From 3265812833f084a3bcc0734feffd5e7348b25c4e Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 27 Jun 2008 18:29:30 -0400 Subject: show exact date when needed darcs-hash:20080627222930-84dde-e54a369d91060b7ff2559af9ff08735b2eec43d9.gz --- lib/util.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/util.php') diff --git a/lib/util.php b/lib/util.php index c60dc907f..bdebbf847 100644 --- a/lib/util.php +++ b/lib/util.php @@ -731,7 +731,7 @@ function common_date_string($dt) { $diff = $now - $t; if ($now < $t) { # that shouldn't happen! - return common_simple_date($dt); + return common_exact_date($dt); } else if ($diff < 60) { return _t('a few seconds ago'); } else if ($diff < 92) { @@ -753,11 +753,11 @@ function common_date_string($dt) { } else if ($diff < 480 * 24 * 3600) { return _t('about a year ago'); } else { - return common_simple_date($dt); + return common_exact_date($dt); } } -function common_simple_date($dt) { +function common_exact_date($dt) { $t = strtotime($dt); return date(DATE_RFC822, $t); } -- cgit v1.2.3-54-g00ecf