Ticket #23126: 23126.patch
File 23126.patch, 830 bytes (added by , 12 years ago) |
---|
-
wp-includes/default-constants.php
75 75 76 76 // Constants for expressing human-readable intervals 77 77 // in their respective number of seconds. 78 79 80 78 define( 'MINUTE_IN_SECONDS', 60 ); 79 define( 'HOUR_IN_SECONDS', 60 * MINUTE_IN_SECONDS ); 80 define( 'DAY_IN_SECONDS', 24 * HOUR_IN_SECONDS ); 81 81 define( 'WEEK_IN_SECONDS', 7 * DAY_IN_SECONDS ); 82 82 define( 'YEAR_IN_SECONDS', 365 * DAY_IN_SECONDS ); 83 83 } 84 84 85 85 /**