Changeset 39566 for branches/4.7/src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php
- Timestamp:
- 12/12/2016 01:39:13 AM (8 years ago)
- Location:
- branches/4.7
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.7
-
branches/4.7/src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php
r39509 r39566 393 393 */ 394 394 $allow_anonymous = apply_filters( 'rest_allow_anonymous_comments', false, $request ); 395 if ( false ===$allow_anonymous ) {395 if ( ! $allow_anonymous ) { 396 396 return new WP_Error( 'rest_comment_login_required', __( 'Sorry, you must be logged in to comment.' ), array( 'status' => 401 ) ); 397 397 }
Note: See TracChangeset
for help on using the changeset viewer.