Ticket #33397: 33397.3.patch
File 33397.3.patch, 1.2 KB (added by , 10 years ago) |
---|
-
src/wp-includes/default-constants.php
95 95 // Constants for features added to WP that should short-circuit their plugin implementations 96 96 define( 'WP_FEATURE_BETTER_PASSWORDS', true ); 97 97 98 // Constants for expressing human-readable intervals 99 // in their respective number of seconds. 98 /** 99 * Constants for expressing human-readable intervals 100 * in their respective number of seconds. 101 * 102 * Please note that these values are approximate and are provided for convenience. 103 * For example, MONTH_IN_SECONDS wrongly assumes every month has 30 days. 104 * 105 * If you need more accuracy please consider using the DateTime class (http://php.net/manual/class.datetime.php). 106 */ 100 107 define( 'MINUTE_IN_SECONDS', 60 ); 101 108 define( 'HOUR_IN_SECONDS', 60 * MINUTE_IN_SECONDS ); 102 109 define( 'DAY_IN_SECONDS', 24 * HOUR_IN_SECONDS ); 103 110 define( 'WEEK_IN_SECONDS', 7 * DAY_IN_SECONDS ); 111 define( 'MONTH_IN_DAYS', 30 * DAY_IN_SECONDS ); 104 112 define( 'YEAR_IN_SECONDS', 365 * DAY_IN_SECONDS ); 105 113 } 106 114