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:
Drew Jaynes 2013-09-21 05:53:09 +00:00
parent 8d1ef212ad
commit ff4238c079
1 changed files with 11 additions and 11 deletions

View File

@ -76,7 +76,7 @@ if ( is_user_logged_in() ) {
* The dynamic portion of the hook name, $_REQUEST['action'],
* refers to the name of the AJAX action callback being fired.
*
* @since 2.1
* @since 2.1.0
*/
do_action( 'wp_ajax_' . $_REQUEST['action'] );
} else {
@ -86,7 +86,7 @@ if ( is_user_logged_in() ) {
* The dynamic portion of the hook name, $_REQUEST['action'],
* 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'] );
}