From: Derick Rethans Date: Sun, 9 Apr 2006 12:58:29 +0000 (+0000) Subject: - Fixed superfluous parameter. X-Git-Tag: RELEASE_1_3~121 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0be2a7c9561cef67e3d9424cfcaa8fe1ed6b3ccd;p=php - Fixed superfluous parameter. --- diff --git a/ext/date/php_date.c b/ext/date/php_date.c index ed720c12d9..483642f0be 100644 --- a/ext/date/php_date.c +++ b/ext/date/php_date.c @@ -947,7 +947,7 @@ PHP_FUNCTION(strtotime) tzi = get_timezone_info(TSRMLS_C); - if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, "sl|l", ×, &time_len, &preset_ts) != FAILURE) { + if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, "sl", ×, &time_len, &preset_ts) != FAILURE) { /* We have an initial timestamp */ now = timelib_time_ctor();