diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-17 16:17:19 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-17 16:17:19 -0400 |
commit | 7ee294de755a919237f9e58032c27be9492391a2 (patch) | |
tree | 4fc39ca03fec6af80aad1cfe5ac70a32ad90cfba | |
parent | 564694c2f1799174fdf914f08d0ca9d8d2325c32 (diff) |
dates are already strings
darcs-hash:20080517201719-84dde-ad4d5d935f510bedbd965c9c4c93550c50820454.gz
-rw-r--r-- | lib/common.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/common.php b/lib/common.php index fe44fa82f..85654d306 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) { |