Changeset 5825 for sites/trunk/wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/src/class-restapi.php
- Timestamp:
- 08/21/2017 01:20:52 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/src/class-restapi.php
r5805 r5825 80 80 if ( ! current_user_can( 'edit_results' ) ) { 81 81 return new WP_Error( 'rest_unauthorized', __( 'Sorry, you are not allowed to create results.', 'ptr' ), array( 82 'status' => 403,82 'status' => is_user_logged_in() ? 403 : 401, 83 83 ) ); 84 84 }
Note: See TracChangeset
for help on using the changeset viewer.