From 8913ea39f22d461b820e6b779cb541b0b107f6ab Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Tue, 25 Aug 2015 21:21:21 +0000 Subject: [PATCH] After [33698], wrap the time constants in a DocBlock template. Props egill. Fixes #33397. Built from https://develop.svn.wordpress.org/trunk@33737 git-svn-id: http://core.svn.wordpress.org/trunk@33705 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/default-constants.php | 3 ++- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/wp-includes/default-constants.php b/wp-includes/default-constants.php index ea42f86dbe..1ec1b36350 100644 --- a/wp-includes/default-constants.php +++ b/wp-includes/default-constants.php @@ -95,7 +95,7 @@ function wp_initial_constants() { // Constants for features added to WP that should short-circuit their plugin implementations define( 'WP_FEATURE_BETTER_PASSWORDS', true ); - /** + /**#@+ * Constants for expressing human-readable intervals * in their respective number of seconds. * @@ -111,6 +111,7 @@ function wp_initial_constants() { define( 'WEEK_IN_SECONDS', 7 * DAY_IN_SECONDS ); define( 'MONTH_IN_SECONDS', 30 * DAY_IN_SECONDS ); define( 'YEAR_IN_SECONDS', 365 * DAY_IN_SECONDS ); + /**#@-*/ } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index cf0d57af0f..59d196e55b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-33736'; +$wp_version = '4.4-alpha-33737'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.