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
This commit is contained in:
Drew Jaynes 2015-10-20 07:35:26 +00:00
parent 3686b78448
commit 7c3a476909
2 changed files with 2 additions and 1 deletions

View File

@ -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). * If you need more accuracy please consider using the DateTime class (http://php.net/manual/class.datetime.php).
* *
* @since 3.5.0 * @since 3.5.0
* @since 4.4.0 Introduced `MONTH_IN_SECONDS`.
*/ */
define( 'MINUTE_IN_SECONDS', 60 ); define( 'MINUTE_IN_SECONDS', 60 );
define( 'HOUR_IN_SECONDS', 60 * MINUTE_IN_SECONDS ); define( 'HOUR_IN_SECONDS', 60 * MINUTE_IN_SECONDS );

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @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. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.