Logged out warnings: remove debug leftovers, see #23295

git-svn-id: https://develop.svn.wordpress.org/trunk@23505 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2013-02-28 09:03:10 +00:00
parent 780ee565aa
commit 1ad1ce8db9
1 changed files with 0 additions and 9 deletions

View File

@ -54,11 +54,6 @@ class WP_Auth_Check {
if ( array_key_exists('wp-auth-check', $data) && ( ! isset( $_COOKIE[LOGGED_IN_COOKIE] ) || ! wp_validate_auth_cookie() || ! empty( $GLOBALS['login_grace_period'] ) ) )
$response['wp-auth-check-html'] = $this->notice();
$response['LOGGED_IN_COOKIE'] = isset( $_COOKIE[LOGGED_IN_COOKIE] );
$response['wp_validate_auth_cookie'] = wp_validate_auth_cookie();
return $response;
}
@ -70,10 +65,6 @@ class WP_Auth_Check {
if ( array_key_exists('wp-auth-check', $data) )
$response['wp-auth-check-html'] = $this->notice();
$response['nopriv_login'] = 1;
return $response;
}