Changeset 59660
- Timestamp:
- 01/17/2025 10:36:41 AM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-xmlrpc-server.php
r59632 r59660 3505 3505 $status = wp_delete_term( $category_id, 'category' ); 3506 3506 3507 if ( true == $status ) {3507 if ( true === $status ) { 3508 3508 /** 3509 3509 * Fires after a category has been successfully deleted via XML-RPC. … … 3755 3755 $status = wp_delete_comment( $comment_id ); 3756 3756 3757 if ( $status ) {3757 if ( true === $status ) { 3758 3758 /** 3759 3759 * Fires after a comment has been successfully deleted via XML-RPC.
Note: See TracChangeset
for help on using the changeset viewer.