From 98cdf5d3153ce3b4b7bc1bd505851f4ed5c73406 Mon Sep 17 00:00:00 2001 From: Friendika Date: Tue, 16 Aug 2011 04:55:38 -0700 Subject: [PATCH] fix API time - wrong format string --- include/api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" ); }