From: Evan Prodromou Date: Sat, 17 May 2008 20:17:19 +0000 (-0400) Subject: dates are already strings X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7ee294de755a919237f9e58032c27be9492391a2;p=quix0rs-gnu-social.git dates are already strings darcs-hash:20080517201719-84dde-ad4d5d935f510bedbd965c9c4c93550c50820454.gz --- 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) {