Docs: The MINUTE_IN_SECONDS, HOUR_IN_SECONDS, DAY_IN_SECONDS, WEEK_IN_SECONDS, MONTH_IN_SECONDS, and YEAR_IN_SECONDS constants were introduced in 3.5.

See [21996]. See #32246.

Built from https://develop.svn.wordpress.org/trunk@35287


git-svn-id: http://core.svn.wordpress.org/trunk@35253 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2015-10-20 06:59:29 +00:00
parent 02c9aeaef3
commit 2eb8672961
2 changed files with 3 additions and 1 deletions

View File

@ -99,6 +99,8 @@ function wp_initial_constants() {
* YEAR_IN_SECONDS does not take leap years into account.
*
* If you need more accuracy please consider using the DateTime class (http://php.net/manual/class.datetime.php).
*
* @since 3.5.0
*/
define( 'MINUTE_IN_SECONDS', 60 );
define( 'HOUR_IN_SECONDS', 60 * MINUTE_IN_SECONDS );

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4-alpha-35286';
$wp_version = '4.4-alpha-35287';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.