Changeset 59790 for trunk/src/wp-includes/class-wp-xmlrpc-server.php
- Timestamp:
- 02/08/2025 03:58:11 PM (12 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-xmlrpc-server.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-xmlrpc-server.php
r59754 r59790 4032 4032 4033 4033 if ( ! $comment_id ) { 4034 return new IXR_Error( 403, __( ' Something went wrong.' ) );4034 return new IXR_Error( 403, __( 'An error occurred while processing your comment. Please ensure all fields are filled correctly and try again.' ) ); 4035 4035 } 4036 4036 … … 5052 5052 5053 5053 if ( ! $posts_list ) { 5054 $this->error = new IXR_Error( 500, __( ' Either there are no posts, or something went wrong.' ) );5054 $this->error = new IXR_Error( 500, __( 'No posts found or an error occurred while retrieving posts.' ) ); 5055 5055 return $this->error; 5056 5056 } … … 6585 6585 6586 6586 if ( ! $posts_list ) { 6587 $this->error = new IXR_Error( 500, __( ' Either there are no posts, or something went wrong.' ) );6587 $this->error = new IXR_Error( 500, __( 'No posts found or an error occurred while retrieving posts.' ) ); 6588 6588 return $this->error; 6589 6589 }
Note: See TracChangeset
for help on using the changeset viewer.