From 5b8bd2209ee044ef95fd727954111403ffbb583d Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Tue, 20 Oct 2015 07:34:34 +0000 Subject: [PATCH] Docs: Correction: `MONTH_IN_SECONDS` was added in 4.4.0. Props swissspidy. See [33698]. See #32246. git-svn-id: https://develop.svn.wordpress.org/trunk@35290 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/default-constants.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wp-includes/default-constants.php b/src/wp-includes/default-constants.php index eb86853fe0..12d6123023 100644 --- a/src/wp-includes/default-constants.php +++ b/src/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 );