Make WordPress Core

Ticket #49150: 49150.patch

File 49150.patch, 550 bytes (added by jenilk, 5 years ago)
  • class-wp-rest-users-controller.php

     
    609609                        sort( $request_params );
    610610                        // If only 'id' and 'roles' are specified (we are only trying to
    611611                        // edit roles), then only the 'promote_user' cap is required.
    612                         if ( $request_params === array( 'id', 'roles' ) ) {
     612                        if ( array( 'id', 'roles' ) === $request_params ) {
    613613                                return true;
    614614                        }
    615615                }