Make WordPress Core


Ignore:
Timestamp:
11/12/2015 04:33:48 PM (10 years ago)
Author:
SergeyBiryukov
Message:

Cast 'illegal_user_logins' filter result to array.

See #27317.

File:
1 edited

Legend:

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

    r35629 r35630  
    144144
    145145    /** This filter is documented in wp-includes/user-functions.php */
    146     $illegal_logins = apply_filters( 'illegal_user_logins', array() );
     146    $illegal_logins = (array) apply_filters( 'illegal_user_logins', array() );
    147147
    148148    if ( in_array( strtolower( $user->user_login ), array_map( 'strtolower', $illegal_logins ) ) ) {
Note: See TracChangeset for help on using the changeset viewer.