Fix spaces to tabs and inline documenation formatting in wp-admin/admin-ajax.php.
See #25229. Built from https://develop.svn.wordpress.org/trunk@25539 git-svn-id: http://core.svn.wordpress.org/trunk@25459 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8d1ef212ad
commit
ff4238c079
|
@ -70,25 +70,25 @@ if ( ! empty( $_POST['action'] ) && in_array( $_POST['action'], $core_actions_po
|
||||||
add_action( 'wp_ajax_nopriv_heartbeat', 'wp_ajax_nopriv_heartbeat', 1 );
|
add_action( 'wp_ajax_nopriv_heartbeat', 'wp_ajax_nopriv_heartbeat', 1 );
|
||||||
|
|
||||||
if ( is_user_logged_in() ) {
|
if ( is_user_logged_in() ) {
|
||||||
/**
|
/**
|
||||||
* Fires authenticated AJAX actions for logged-in users.
|
* Fires authenticated AJAX actions for logged-in users.
|
||||||
*
|
*
|
||||||
* The dynamic portion of the hook name, $_REQUEST['action'],
|
* The dynamic portion of the hook name, $_REQUEST['action'],
|
||||||
* refers to the name of the AJAX action callback being fired.
|
* refers to the name of the AJAX action callback being fired.
|
||||||
*
|
*
|
||||||
* @since 2.1
|
* @since 2.1.0
|
||||||
*/
|
*/
|
||||||
do_action( 'wp_ajax_' . $_REQUEST['action'] );
|
do_action( 'wp_ajax_' . $_REQUEST['action'] );
|
||||||
} else {
|
} else {
|
||||||
/**
|
/**
|
||||||
* Fires non-authenticated AJAX actions for logged-out users.
|
* Fires non-authenticated AJAX actions for logged-out users.
|
||||||
*
|
*
|
||||||
* The dynamic portion of the hook name, $_REQUEST['action'],
|
* The dynamic portion of the hook name, $_REQUEST['action'],
|
||||||
* refers to the name of the AJAX action callback being fired.
|
* refers to the name of the AJAX action callback being fired.
|
||||||
*
|
*
|
||||||
* @since 2.8
|
* @since 2.8.0
|
||||||
*/
|
*/
|
||||||
do_action( 'wp_ajax_nopriv_' . $_REQUEST['action'] );
|
do_action( 'wp_ajax_nopriv_' . $_REQUEST['action'] );
|
||||||
}
|
}
|
||||||
// Default status
|
// Default status
|
||||||
die( '0' );
|
die( '0' );
|
||||||
|
|
Loading…
Reference in New Issue