After [33698], wrap the time constants in a DocBlock template.
Props egill. Fixes #33397. Built from https://develop.svn.wordpress.org/trunk@33737 git-svn-id: http://core.svn.wordpress.org/trunk@33705 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d8752c191d
commit
8913ea39f2
|
@ -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 );
|
||||
/**#@-*/
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-alpha-33736';
|
||||
$wp_version = '4.4-alpha-33737';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue