Much better handling of wp-login.php page load. See #8938 props wnorris.
git-svn-id: http://svn.automattic.com/wordpress/trunk@10463 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
@@ -50,8 +50,13 @@ function wp_signon( $credentials = '', $secure_cookie = '' ) {
|
||||
|
||||
$user = wp_authenticate($credentials['user_login'], $credentials['user_password']);
|
||||
|
||||
if ( is_wp_error($user) )
|
||||
if ( is_wp_error($user) ) {
|
||||
if ( $user->get_error_codes() == array('empty_username', 'empty_password') ) {
|
||||
$user = new WP_Error('', '');
|
||||
}
|
||||
|
||||
return $user;
|
||||
}
|
||||
|
||||
wp_set_auth_cookie($user->ID, $credentials['remember'], $secure_cookie);
|
||||
do_action('wp_login', $credentials['user_login']);
|
||||
@@ -66,11 +71,6 @@ add_filter('authenticate', 'wp_authenticate_username_password', 20, 3);
|
||||
function wp_authenticate_username_password($user, $username, $password) {
|
||||
if ( is_a($user, 'WP_User') ) { return $user; }
|
||||
|
||||
// TODO slight hack to handle initial load of wp-login.php
|
||||
if ( (empty($username) && empty($password)) && $GLOBALS['pagenow'] == 'wp-login.php' ) {
|
||||
return $user;
|
||||
}
|
||||
|
||||
if ( empty($username) || empty($password) ) {
|
||||
$error = new WP_Error();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user