diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 8826aa800..3b7cf1a04 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -27,16 +27,15 @@ function mysql2date( $dateformatstring, $mysqlstring, $translate = true ) { if ( empty( $m ) ) return false; - if ( 'G' == $dateformatstring ) { + if ( 'G' == $dateformatstring ) return strtotime( $m . ' +0000' ); - } $i = strtotime( $m ); if ( 'U' == $dateformatstring ) return $i; - if ( $translate) + if ( $translate ) return date_i18n( $dateformatstring, $i ); else return date( $dateformatstring, $i );