From 0be2a7c9561cef67e3d9424cfcaa8fe1ed6b3ccd Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Sun, 9 Apr 2006 12:58:29 +0000 Subject: [PATCH] - Fixed superfluous parameter. --- 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 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(); -- 2.50.1