Make WordPress Core

Changeset 23922


Ignore:
Timestamp:
04/05/2013 11:28:40 PM (12 years ago)
Author:
azaozz
Message:

Logged out warnings: fix phpdoc, props ocean90, see #23295

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/functions.php

    r23805 r23922  
    38893889/**
    38903890 * Load the auth check for monitoring whether the user is still logged in.
    3891  * Can be disabled with remove_action( 'init', 'wp_auth_check_load' );
     3891 * Can be disabled with remove_action( 'admin_init', 'wp_auth_check_load' );
    38923892 *
    38933893 * @since 3.6.0
     
    39253925    $current_domain = ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'];
    39263926    $same_domain = ( strpos( $login_url, $current_domain ) === 0 );
    3927    
     3927
    39283928    // Let plugins change this if they know better.
    39293929    $same_domain = apply_filters( 'wp_auth_check_same_domain', $same_domain );
Note: See TracChangeset for help on using the changeset viewer.