From 67c2b55ab63078d405d5bbe4f860623cc8517adf Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Sat, 7 Jul 2012 04:31:22 +0200 Subject: [PATCH] Fix some stray spaces --- include.datetime.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include.datetime.php b/include.datetime.php index ba450ee..226461d 100644 --- a/include.datetime.php +++ b/include.datetime.php @@ -198,9 +198,9 @@ function time_ago($timestamp, $locale) $interval = $date1->diff($date2); $years = (int)$interval->y; - $months = (int)$interval->m; - $weeks = (int)$interval->format("%U"); - $days = (int)$interval->d; + $months = (int)$interval->m; + $weeks = (int)$interval->format("%U"); + $days = (int)$interval->d; $hours = (int)$interval->h; $minutes = (int)$interval->i; $seconds = (int)$interval->s;