- Timestamp:
- 09/24/2017 10:28:56 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php
r41226 r41588 741 741 // We don't support trashing for users. 742 742 if ( ! $force ) { 743 return new WP_Error( 'rest_trash_not_supported', __( 'Users do not support trashing. Set force=true to delete.' ), array( 'status' => 501 ) ); 743 /* translators: %s: force=true */ 744 return new WP_Error( 'rest_trash_not_supported', sprintf( __( "Users do not support trashing. Set '%s' to delete." ), 'force=true' ), array( 'status' => 501 ) ); 744 745 } 745 746
Note: See TracChangeset
for help on using the changeset viewer.