Make WordPress Core

Changeset 25539


Ignore:
Timestamp:
09/21/2013 05:52:06 AM (11 years ago)
Author:
DrewAPicture
Message:

Fix spaces to tabs and inline documenation formatting in wp-admin/admin-ajax.php.

See #25229.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/admin-ajax.php

    r25538 r25539  
    7171
    7272if ( is_user_logged_in() ) {
    73     /**
    74      * Fires authenticated AJAX actions for logged-in users.
    75      *
    76      * The dynamic portion of the hook name, $_REQUEST['action'],
    77      * refers to the name of the AJAX action callback being fired.
    78      *
    79      * @since 2.1
    80      */
    81     do_action( 'wp_ajax_' . $_REQUEST['action'] );
    82 } else {
    83     /**
    84      * Fires non-authenticated AJAX actions for logged-out users.
     73    /**
     74     * Fires authenticated AJAX actions for logged-in users.
    8575     *
    8676     * The dynamic portion of the hook name, $_REQUEST['action'],
    8777     * refers to the name of the AJAX action callback being fired.
    8878     *
    89      * @since 2.8
    90      */
    91     do_action( 'wp_ajax_nopriv_' . $_REQUEST['action'] );
     79     * @since 2.1.0
     80     */
     81    do_action( 'wp_ajax_' . $_REQUEST['action'] );
     82} else {
     83    /**
     84     * Fires non-authenticated AJAX actions for logged-out users.
     85     *
     86     * The dynamic portion of the hook name, $_REQUEST['action'],
     87     * refers to the name of the AJAX action callback being fired.
     88     *
     89     * @since 2.8.0
     90     */
     91    do_action( 'wp_ajax_nopriv_' . $_REQUEST['action'] );
    9292}
    9393// Default status
Note: See TracChangeset for help on using the changeset viewer.