fix API time - wrong format string

This commit is contained in:
Friendika 2011-08-16 04:55:38 -07:00
parent 2c0404fdc8
commit 98cdf5d315
1 changed files with 1 additions and 1 deletions

View File

@ -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" );
}