helly           Mon Feb  4 15:58:13 2008 UTC

  Modified files:              
    /php-src/ext/spl    php_spl.c 
  Log:
  - Fix message
  
http://cvs.php.net/viewvc.cgi/php-src/ext/spl/php_spl.c?r1=1.124&r2=1.125&diff_format=u
Index: php-src/ext/spl/php_spl.c
diff -u php-src/ext/spl/php_spl.c:1.124 php-src/ext/spl/php_spl.c:1.125
--- php-src/ext/spl/php_spl.c:1.124     Sat Feb  2 23:02:16 2008
+++ php-src/ext/spl/php_spl.c   Mon Feb  4 15:58:12 2008
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: php_spl.c,v 1.124 2008/02/02 23:02:16 helly Exp $ */
+/* $Id: php_spl.c,v 1.125 2008/02/04 15:58:12 helly Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -447,7 +447,7 @@
                                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);

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to