Make WordPress Core

Ticket #50812: 50812.patch

File 50812.patch, 691 bytes (added by ramiy, 4 years ago)
  • wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php

     
    12911291                if ( false !== strpos( $password, '\\' ) ) {
    12921292                        return new WP_Error(
    12931293                                'rest_user_invalid_password',
    1294                                 __( 'Passwords cannot contain the "\\" character.' ),
     1294                                sprintf(
     1295                                        /* translators: %s: The '\' character. */
     1296                                        __( 'Passwords cannot contain the "%s" character.' ),
     1297                                        '\\'
     1298                                ),
    12951299                                array( 'status' => 400 )
    12961300                        );
    12971301                }