diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-04-16 14:40:57 -0700 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-04-16 14:40:57 -0700 |
commit | 4d0e4f733bdfa281487f370b70f5f7440a7ef931 (patch) | |
tree | 24c221b53c41ce93d960c7365d3aa23695091387 | |
parent | bac3ee95c96db10ed51a907f6f9b602a7c887c0f (diff) |
Make API dates more compatible with Twitter - ticket 1432
-rw-r--r-- | lib/twitterapi.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/twitterapi.php b/lib/twitterapi.php index b8357c688..6a90b4e28 100644 --- a/lib/twitterapi.php +++ b/lib/twitterapi.php @@ -418,7 +418,7 @@ class TwitterapiAction extends Action function date_twitter($dt) { $t = strtotime($dt); - return date("D M d G:i:s O Y", $t); + return date("D M d H:i:s O Y", $t); } // XXX: Candidate for a general utility method somewhere? |