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.