Browse Source

- Fixed superfluous parameter.

migration/RELEASE_1_0_0
Derick Rethans 21 years ago
parent
commit
0be2a7c956
  1. 2
      ext/date/php_date.c

2
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", &times, &time_len, &preset_ts) != FAILURE) {
if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, "sl", &times, &time_len, &preset_ts) != FAILURE) {
/* We have an initial timestamp */
now = timelib_time_ctor();

Loading…
Cancel
Save