From 95a88f04a981270e9bcbdcf59bd33d0fe2f023b5 Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Thu, 18 Nov 2010 11:28:07 +0000 Subject: [PATCH] - Fixed the call as well. --- ext/date/php_date.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.40.0