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