From 818251f59e2cea9b11c982e76ed6d3c121d7f9dc Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Mon, 21 Jan 2013 14:39:39 +0000 Subject: [PATCH] Whitespace cleanup. Props dimadin fixes #23126 git-svn-id: https://develop.svn.wordpress.org/trunk@23308 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/default-constants.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-includes/default-constants.php b/wp-includes/default-constants.php index b252f43863..d7f6bbe1d1 100644 --- a/wp-includes/default-constants.php +++ b/wp-includes/default-constants.php @@ -75,11 +75,11 @@ function wp_initial_constants() { // Constants for expressing human-readable intervals // in their respective number of seconds. - define( 'MINUTE_IN_SECONDS', 60 ); - define( 'HOUR_IN_SECONDS', 60 * MINUTE_IN_SECONDS ); - define( 'DAY_IN_SECONDS', 24 * HOUR_IN_SECONDS ); + define( 'MINUTE_IN_SECONDS', 60 ); + define( 'HOUR_IN_SECONDS', 60 * MINUTE_IN_SECONDS ); + define( 'DAY_IN_SECONDS', 24 * HOUR_IN_SECONDS ); define( 'WEEK_IN_SECONDS', 7 * DAY_IN_SECONDS ); - define( 'YEAR_IN_SECONDS', 365 * DAY_IN_SECONDS ); + define( 'YEAR_IN_SECONDS', 365 * DAY_IN_SECONDS ); } /**