1
0
mirror of https://github.com/php/php-src.git synced 2026-04-30 03:33:17 +02:00

- Drop unnecessary param

This commit is contained in:
Marcus Boerger
2005-11-07 13:08:24 +00:00
parent ae1d56d098
commit bb293e15c3
+1 -1
View File
@@ -395,7 +395,7 @@ PHP_FUNCTION(spl_autoload_register)
zend_str_tolower_copy(tmp_name, Z_STRVAL_P(zcallable), Z_STRLEN_P(zcallable));
if (!strcmp(tmp_name, "spl_autoload_call")) {
if (do_throw) {
zend_throw_exception_ex(spl_ce_LogicException, 0 TSRMLS_CC, "Function spl_autoload_call() cannot be registered", func_name);
zend_throw_exception_ex(spl_ce_LogicException, 0 TSRMLS_CC, "Function spl_autoload_call() cannot be registered");
}
return;
}