Skip to content

Commit 05e6a11

Browse files
committed
Remove ZEND_PARSE_PARAMS_QUIET from spl_autoload_register()
1 parent e2a1dbd commit 05e6a11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/spl/php_spl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ PHP_FUNCTION(spl_autoload_register)
510510
zend_object *obj_ptr;
511511
zend_fcall_info_cache fcc;
512512

513-
if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS(), "|zbb", &zcallable, &do_throw, &prepend) == FAILURE) {
513+
if (zend_parse_parameters(ZEND_NUM_ARGS(), "|zbb", &zcallable, &do_throw, &prepend) == FAILURE) {
514514
return;
515515
}
516516

0 commit comments

Comments
 (0)