Fix warnings. Props nbachiyski. fixes #8153

git-svn-id: http://svn.automattic.com/wordpress/trunk@9618 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-11-11 20:40:36 +00:00
parent e5bb6778d3
commit 633c920a9e
1 changed files with 2 additions and 2 deletions

View File

@ -112,11 +112,11 @@ function current_time( $type, $gmt = 0 ) {
* @param int $unixtimestamp Unix timestamp
* @return string The date, translated if locale specifies it.
*/
function date_i18n( $dateformatstring, $unixtimestamp, $gmt = false ) {
function date_i18n( $dateformatstring, $unixtimestamp = false, $gmt = false ) {
global $wp_locale;
$i = $unixtimestamp;
// Sanity check for PHP 5.1.0-
if ( intval($i) < 1 )
if ( false === $i || intval($i) < 0 )
$i = time();
if ( ( !empty( $wp_locale->month ) ) && ( !empty( $wp_locale->weekday ) ) ) {