Changeset 25539
- Timestamp:
- 09/21/2013 05:52:06 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/admin-ajax.php
r25538 r25539 71 71 72 72 if ( 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. 85 75 * 86 76 * The dynamic portion of the hook name, $_REQUEST['action'], 87 77 * refers to the name of the AJAX action callback being fired. 88 78 * 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'] ); 92 92 } 93 93 // Default status
Note: See TracChangeset
for help on using the changeset viewer.