dates are already strings

darcs-hash:20080517201719-84dde-ad4d5d935f510bedbd965c9c4c93550c50820454.gz
This commit is contained in:
Evan Prodromou 2008-05-17 16:17:19 -04:00
parent 564694c2f1
commit 7ee294de75
1 changed files with 2 additions and 1 deletions

View 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) {