Make WordPress Core

Ticket #42828: 42828.patch

File 42828.patch, 740 bytes (added by jaswrks, 7 years ago)
  • src/wp-includes/rest-api/class-wp-rest-server.php

     
    915915                                                if ( is_wp_error( $permission ) ) {
    916916                                                        $response = $permission;
    917917                                                } elseif ( false === $permission || null === $permission ) {
    918                                                         $response = new WP_Error( 'rest_forbidden', __( 'Sorry, you are not allowed to do that.' ), array( 'status' => 403 ) );
     918                                                        $response = new WP_Error( 'rest_forbidden', __( 'Sorry, you are not allowed to do that.' ), array( 'status' => rest_authorization_required_code() ) );
    919919                                                }
    920920                                        }
    921921                                }