]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
dates are already strings
authorEvan Prodromou <evan@prodromou.name>
Sat, 17 May 2008 20:17:19 +0000 (16:17 -0400)
committerEvan Prodromou <evan@prodromou.name>
Sat, 17 May 2008 20:17:19 +0000 (16:17 -0400)
darcs-hash:20080517201719-84dde-ad4d5d935f510bedbd965c9c4c93550c50820454.gz

lib/common.php

index fe44fa82f79bde79bd7ac1fdec7edc7574edaf20..85654d3064248eb63ff849deced14182763a3e58 100644 (file)
@@ -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) {