From: Marcus Boerger Date: Mon, 7 Nov 2005 13:08:24 +0000 (+0000) Subject: - Drop unnecessary param X-Git-Tag: php-5.1.0RC5~40 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bb293e15c378dbc541aa6e5b035b44a3952ca2c0;p=php - Drop unnecessary param --- 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; }