mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-03-03 05:02:52 +00:00
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:
parent
1fb94edb99
commit
20bad276e8
@ -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 );
|
||||
/**#@-*/
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Loading…
Reference in New Issue
Block a user