Ticket #35188: 35188-3.patch
File 35188-3.patch, 897 bytes (added by , 9 years ago) |
---|
-
src/wp-includes/pluggable.php
1772 1772 * 1773 1773 * @since 2.5.0 1774 1774 * 1775 * @param string|int $action the current action. 1776 * 1775 1777 * @return float Float value rounded up to the next highest integer. 1776 1778 */ 1777 function wp_nonce_tick( ) {1779 function wp_nonce_tick( $action = -1 ) { 1778 1780 /** 1779 1781 * Filters the lifespan of nonces in seconds. 1780 1782 * … … 1781 1783 * @since 2.5.0 1782 1784 * 1783 1785 * @param int $lifespan Lifespan of nonces in seconds. Default 86,400 seconds, or one day. 1786 * @param string|int $action The current nonce action. 1784 1787 */ 1785 $nonce_life = apply_filters( 'nonce_life', DAY_IN_SECONDS );1788 $nonce_life = apply_filters( 'nonce_life', DAY_IN_SECONDS, $action ); 1786 1789 1787 1790 return ceil(time() / ( $nonce_life / 2 )); 1788 1791 }