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:
Scott Taylor 2015-08-25 21:21:21 +00:00
parent d8752c191d
commit 8913ea39f2
2 changed files with 3 additions and 2 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 );
/**#@-*/
}
/**

View File

@ -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.