diff options
author | Friendika <info@friendika.com> | 2011-08-16 04:55:38 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-08-16 04:55:38 -0700 |
commit | 98cdf5d3153ce3b4b7bc1bd505851f4ed5c73406 (patch) | |
tree | 6f633dd9cc81e7221d49fbe796ee10af4313f848 | |
parent | 2c0404fdc88081f68af18a788d2f285e5c059f47 (diff) | |
download | volse-hubzilla-98cdf5d3153ce3b4b7bc1bd505851f4ed5c73406.tar.gz volse-hubzilla-98cdf5d3153ce3b4b7bc1bd505851f4ed5c73406.tar.bz2 volse-hubzilla-98cdf5d3153ce3b4b7bc1bd505851f4ed5c73406.zip |
fix API time - wrong format string
-rw-r--r-- | include/api.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/api.php b/include/api.php index cf7d0304f..7a44cf023 100644 --- a/include/api.php +++ b/include/api.php @@ -12,7 +12,7 @@ function api_date($str){ //Wed May 23 06:01:13 +0000 2007 - return datetime_convert('UTC', 'UTC', $str, "D M d h:i:s +0000 Y" ); + return datetime_convert('UTC', 'UTC', $str, "D M d H:i:s +0000 Y" ); } |