Fix typos. Fix assignment. Remove passing of non-existent arg. Props ScottMac. fixes #12193

git-svn-id: http://svn.automattic.com/wordpress/trunk@13054 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan
2010-02-11 16:58:32 +00:00
parent dde64e4cf1
commit c75817ca52
2 changed files with 14 additions and 14 deletions

View File

@@ -1580,7 +1580,7 @@ EOD;
return false;
if ($match[3] == 'Z')
$match[3] == '+0000';
$match[3] = '+0000';
return strtotime($match[1] . " " . $match[2] . " " . $match[3]);
}