After [33698], wrap the time constants in a DocBlock template.

Props egill.
Fixes #33397.


git-svn-id: https://develop.svn.wordpress.org/trunk@33737 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
wonderboymusic 2015-08-25 21:20:02 +00:00
parent 1fb94edb99
commit 20bad276e8
1 changed files with 2 additions and 1 deletions

View File

@ -95,7 +95,7 @@ function wp_initial_constants() {
// Constants for features added to WP that should short-circuit their plugin implementations
define( 'WP_FEATURE_BETTER_PASSWORDS', true );
/**
/**#@+
* Constants for expressing human-readable intervals
* in their respective number of seconds.
*
@ -111,6 +111,7 @@ function wp_initial_constants() {
define( 'WEEK_IN_SECONDS', 7 * DAY_IN_SECONDS );
define( 'MONTH_IN_SECONDS', 30 * DAY_IN_SECONDS );
define( 'YEAR_IN_SECONDS', 365 * DAY_IN_SECONDS );
/**#@-*/
}
/**