From 2eb8672961f8bde89e48a38469f259e06b823016 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Tue, 20 Oct 2015 06:59:29 +0000 Subject: [PATCH] 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 --- wp-includes/default-constants.php | 2 ++ wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/wp-includes/default-constants.php b/wp-includes/default-constants.php index 252c98e40b..eb86853fe0 100644 --- a/wp-includes/default-constants.php +++ b/wp-includes/default-constants.php @@ -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 ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 067ef54251..249d740ed3 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.