From: Marcus Boerger Date: Mon, 4 Feb 2008 15:58:12 +0000 (+0000) Subject: - Fix message X-Git-Tag: RELEASE_2_0_0a1~627 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fac5ae96cb32854b1c3284d4441dc4e5d1407f3e;p=php - Fix message --- diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c index a9676ae3d1..cda385dc3f 100755 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -447,7 +447,7 @@ PHP_FUNCTION(spl_autoload_register) RETURN_FALSE; } else if (Z_TYPE_P(zcallable) == IS_STRING || Z_TYPE_P(zcallable) == IS_UNICODE) { if (do_throw) { - zend_throw_exception_ex(spl_ce_LogicException, 0 TSRMLS_CC, "Function '%R' not %s, (%s)", Z_TYPE_P(zcallable), Z_UNIVAL_P(zcallable), alfi.func_ptr ? "callable" : "found", error); + zend_throw_exception_ex(spl_ce_LogicException, 0 TSRMLS_CC, "Function '%R' not %s (%s)", Z_TYPE_P(zcallable), Z_UNIVAL_P(zcallable), alfi.func_ptr ? "callable" : "found", error); } if (error) { efree(error);