From bb293e15c378dbc541aa6e5b035b44a3952ca2c0 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Mon, 7 Nov 2005 13:08:24 +0000 Subject: [PATCH] - Drop unnecessary param --- ext/spl/php_spl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c index aac340082d..a8a9f0e0a3 100755 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -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; } -- 2.50.1