From 20bad276e8b426f36d73aa9ff9a6cb25a4abcee1 Mon Sep 17 00:00:00 2001 From: wonderboymusic Date: Tue, 25 Aug 2015 21:20:02 +0000 Subject: [PATCH] After [33698], wrap the time constants in a DocBlock template. Props egill. Fixes #33397. git-svn-id: https://develop.svn.wordpress.org/trunk@33737 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/default-constants.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/wp-includes/default-constants.php b/src/wp-includes/default-constants.php index ea42f86dbe..1ec1b36350 100644 --- a/src/wp-includes/default-constants.php +++ b/src/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 ); + /**#@-*/ } /**