Don't add UTC offset again when formatting 'U' in mysql2date. Props masquerade. fixes #2537
git-svn-id: http://svn.automattic.com/wordpress/trunk@3633 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e7feb40925
commit
8d5089e9d1
|
@ -23,6 +23,9 @@ function mysql2date($dateformatstring, $mysqlstring, $translate = true) {
|
|||
}
|
||||
$i = mktime(substr($m,11,2),substr($m,14,2),substr($m,17,2),substr($m,5,2),substr($m,8,2),substr($m,0,4));
|
||||
|
||||
if( 'U' == $dateformatstring )
|
||||
return $i;
|
||||
|
||||
if ( -1 == $i || false == $i )
|
||||
$i = 0;
|
||||
|
||||
|
|
Loading…
Reference in New Issue