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:
Andrew Ozz
2014-02-09 22:33:56 +00:00
parent e1f6ab1ea9
commit 4951bdc964
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -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;
}