From 7ee294de755a919237f9e58032c27be9492391a2 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 17 May 2008 16:17:19 -0400 Subject: [PATCH] dates are already strings darcs-hash:20080517201719-84dde-ad4d5d935f510bedbd965c9c4c93550c50820454.gz --- lib/common.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/common.php b/lib/common.php index fe44fa82f7..85654d3064 100644 --- a/lib/common.php +++ b/lib/common.php @@ -294,7 +294,8 @@ function common_local_url($action, $args=NULL) { function common_date_string($dt) { // XXX: do some sexy date formatting - return date(DATE_RFC822, $dt); + // return date(DATE_RFC822, $dt); + return $dt; } function common_redirect($url, $code=307) {