From: Friendika Date: Tue, 16 Aug 2011 11:55:38 +0000 (-0700) Subject: fix API time - wrong format string X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=98cdf5d3153ce3b4b7bc1bd505851f4ed5c73406;p=friendica.git fix API time - wrong format string --- diff --git a/include/api.php b/include/api.php index cf7d0304fb..7a44cf0237 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" ); }