Index: src/wp-includes/pluggable.php
===================================================================
--- src/wp-includes/pluggable.php	(revision 37881)
+++ src/wp-includes/pluggable.php	(working copy)
@@ -1772,9 +1772,11 @@
  *
  * @since 2.5.0
  *
+ * @param string|int $action the current action.
+ *
  * @return float Float value rounded up to the next highest integer.
  */
-function wp_nonce_tick() {
+function wp_nonce_tick( $action = -1 ) {
 	/**
 	 * Filters the lifespan of nonces in seconds.
 	 *
@@ -1781,8 +1783,9 @@
 	 * @since 2.5.0
 	 *
 	 * @param int $lifespan Lifespan of nonces in seconds. Default 86,400 seconds, or one day.
+	 * @param string|int $action The current nonce action.
 	 */
-	$nonce_life = apply_filters( 'nonce_life', DAY_IN_SECONDS );
+	$nonce_life = apply_filters( 'nonce_life', DAY_IN_SECONDS, $action );
 
 	return ceil(time() / ( $nonce_life / 2 ));
 }
