From 7c3a476909220c89206f816721f913fe19a7f50a Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Tue, 20 Oct 2015 07:35:26 +0000 Subject: [PATCH] Docs: Correction: `MONTH_IN_SECONDS` was added in 4.4.0. Props swissspidy. See [33698]. See #32246. Built from https://develop.svn.wordpress.org/trunk@35290 git-svn-id: http://core.svn.wordpress.org/trunk@35256 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/default-constants.php | 1 + wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-includes/default-constants.php b/wp-includes/default-constants.php index eb86853fe0..12d6123023 100644 --- a/wp-includes/default-constants.php +++ b/wp-includes/default-constants.php @@ -101,6 +101,7 @@ function wp_initial_constants() { * If you need more accuracy please consider using the DateTime class (http://php.net/manual/class.datetime.php). * * @since 3.5.0 + * @since 4.4.0 Introduced `MONTH_IN_SECONDS`. */ 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 47d7ab36e4..3018996577 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-35289'; +$wp_version = '4.4-alpha-35290'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.