Changeset 42720 for trunk/src/wp-admin/includes/ajax-actions.php
- Timestamp:
- 02/19/2018 09:45:03 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ajax-actions.php
r42717 r42720 38 38 * @since 3.6.0 39 39 * 40 * @param array |object $response The no-priv Heartbeat response object or array.41 * @param array $data An array of data passed via $_POST.42 * @param string 40 * @param array $response The no-priv Heartbeat response. 41 * @param array $data The $_POST data sent. 42 * @param string $screen_id The screen id. 43 43 */ 44 44 $response = apply_filters( 'heartbeat_nopriv_received', $response, $data, $screen_id ); … … 46 46 47 47 /** 48 * Filters Heartbeat Ajax response when no data is passed.48 * Filters Heartbeat Ajax response in no-privilege environments when no data is passed. 49 49 * 50 50 * @since 3.6.0 51 51 * 52 * @param array |object $response The Heartbeat response object or array.53 * @param string 52 * @param array $response The no-priv Heartbeat response. 53 * @param string $screen_id The screen id. 54 54 */ 55 55 $response = apply_filters( 'heartbeat_nopriv_send', $response, $screen_id ); … … 62 62 * @since 3.6.0 63 63 * 64 * @param array |object$response The no-priv Heartbeat response.65 * @param string 64 * @param array $response The no-priv Heartbeat response. 65 * @param string $screen_id The screen id. 66 66 */ 67 67 do_action( 'heartbeat_nopriv_tick', $response, $screen_id ); … … 3027 3027 if ( 1 !== $nonce_state ) { 3028 3028 /** 3029 * Filters the nonces to send to the editor.3029 * Filters the nonces to send to the New/Edit Post screen. 3030 3030 * 3031 3031 * @since 4.3.0 3032 3032 * 3033 * @param array |object $response The no-priv Heartbeat response object or array.3034 * @param array $data An array of data passed via $_POST.3035 * @param string 3033 * @param array $response The Heartbeat response. 3034 * @param array $data The $_POST data sent. 3035 * @param string $screen_id The screen id. 3036 3036 */ 3037 3037 $response = apply_filters( 'wp_refresh_nonces', $response, $data, $screen_id );
Note: See TracChangeset
for help on using the changeset viewer.