diff --git a/wp-admin/includes/ajax-actions.php b/wp-admin/includes/ajax-actions.php
index 8ced5d3..0918cd2 100644
a
|
b
|
function wp_ajax_heartbeat() { |
3088 | 3088 | } |
3089 | 3089 | |
3090 | 3090 | if ( 1 !== $nonce_state ) { |
| 3091 | /** |
| 3092 | * Filters the nonces to send to the editor. |
| 3093 | * |
| 3094 | * @since 4.3.0 |
| 3095 | * |
| 3096 | * @param array|object $response The no-priv Heartbeat response object or array. |
| 3097 | * @param array $data An array of data passed via $_POST. |
| 3098 | * @param string $screen_id The screen id. |
| 3099 | */ |
3091 | 3100 | $response = apply_filters( 'wp_refresh_nonces', $response, $data, $screen_id ); |
3092 | 3101 | |
3093 | 3102 | if ( false === $nonce_state ) { |