From: Derick Rethans Date: Thu, 18 Nov 2010 11:28:07 +0000 (+0000) Subject: - Fixed the call as well. X-Git-Tag: php-5.3.4RC1~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=95a88f04a981270e9bcbdcf59bd33d0fe2f023b5;p=php - Fixed the call as well. --- diff --git a/ext/date/php_date.c b/ext/date/php_date.c index df31cd5f2a..3adc091214 100644 --- a/ext/date/php_date.c +++ b/ext/date/php_date.c @@ -1336,7 +1336,7 @@ PHP_FUNCTION(idate) ts = time(NULL); } - ret = php_idate(format[0], ts, 0 TSRMLS_CC); + ret = php_idate(format[0], ts, 0); if (ret == -1) { php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unrecognized date format token."); RETURN_FALSE;