Remove unused arg from wp_auth_check(), see #27081.
git-svn-id: https://develop.svn.wordpress.org/trunk@27154 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
e1f6ab1ea9
commit
4951bdc964
@ -293,9 +293,9 @@ add_filter( 'default_option_embed_autourls', '__return_true' );
|
||||
add_filter( 'heartbeat_settings', 'wp_heartbeat_settings' );
|
||||
|
||||
// Check if the user is logged out
|
||||
add_action( 'admin_enqueue_scripts', 'wp_auth_check_load' );
|
||||
add_filter( 'heartbeat_send', 'wp_auth_check', 10, 2 );
|
||||
add_filter( 'heartbeat_nopriv_send', 'wp_auth_check', 10, 2 );
|
||||
add_action( 'admin_enqueue_scripts', 'wp_auth_check_load' );
|
||||
add_filter( 'heartbeat_send', 'wp_auth_check' );
|
||||
add_filter( 'heartbeat_nopriv_send', 'wp_auth_check' );
|
||||
|
||||
// Default authentication filters
|
||||
add_filter( 'authenticate', 'wp_authenticate_username_password', 20, 3 );
|
||||
|
@ -4095,7 +4095,7 @@ function wp_auth_check_html() {
|
||||
*
|
||||
* @since 3.6.0
|
||||
*/
|
||||
function wp_auth_check( $response, $data ) {
|
||||
function wp_auth_check( $response ) {
|
||||
$response['wp-auth-check'] = is_user_logged_in() && empty( $GLOBALS['login_grace_period'] );
|
||||
return $response;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user