Make WordPress Core

Changeset 46640

Timestamp:
11/03/2019 08:10:23 PM (5 years ago)
Author:
whyisjake
Message:

Login and Registration: Allow email logins to be more flexible.

Allows a login to have an apostorphe. Which would normally be created as a mistake, but this allows the login to happen.

Fixes #38744
Props wpkuf, desrosj, socalchristina, bibliofille, santilinwp, nsubugak, sncoker, cafenoirdesign, whyisjake.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/user.php

    r45932 r46640  
    4242
    4343    if ( ! $update && isset( $_POST['user_login'] ) ) {
    44         $user->user_login = sanitize_user( $_POST['user_login'], true );
     44        $user->user_login = sanitize_user( , true );
    4545    }
    4646
  • trunk/src/wp-includes/user.php

    r46417 r46640  
    3636
    3737        if ( ! empty( $_POST['log'] ) ) {
    38             $credentials['user_login'] = $_POST['log'];
     38            $credentials['user_login'] = ;
    3939        }
    4040        if ( ! empty( $_POST['pwd'] ) ) {
  • trunk/src/wp-login.php

    r46620 r46640  
    10331033        if ( $http_post ) {
    10341034            if ( isset( $_POST['user_login'] ) && is_string( $_POST['user_login'] ) ) {
    1035                 $user_login = $_POST['user_login'];
     1035                $user_login = ;
    10361036            }
    10371037
     
    11511151        // If the user wants SSL but the session is not SSL, force a secure cookie.
    11521152        if ( ! empty( $_POST['log'] ) && ! force_ssl_admin() ) {
    1153             $user_name = sanitize_user( $_POST['log'] );
     1153            $user_name = sanitize_user( );
    11541154            $user      = get_user_by( 'login', $user_name );
    11551155
  • trunk/tests/phpunit/tests/user.php

    r46586 r46640  
    3636        self::$user_ids[] = self::$contrib_id;
    3737
     38
     39
     40
     41
     42
     43
     44
     45
     46
     47
     48
     49
     50
     51
     52
     53
    3854        self::$author_id  = $factory->user->create(
    3955            array(
     
    6480
    6581        $this->author = clone self::$_author;
     82
     83
     84
     85
     86
     87
     88
     89
     90
     91
     92
     93
     94
     95
     96
     97
     98
     99
    66100    }
    67101
Note: See TracChangeset for help on using the changeset viewer.