iliaa           Tue May 30 02:40:49 2006 UTC

  Modified files:              
    /php-src/ext/wddx   wddx.c 
  Log:
  MFB: Convert E_ERROR to E_RECOVERABLE_ERROR
  
  
http://cvs.php.net/viewcvs.cgi/php-src/ext/wddx/wddx.c?r1=1.135&r2=1.136&diff_format=u
Index: php-src/ext/wddx/wddx.c
diff -u php-src/ext/wddx/wddx.c:1.135 php-src/ext/wddx/wddx.c:1.136
--- php-src/ext/wddx/wddx.c:1.135       Fri May 26 01:55:00 2006
+++ php-src/ext/wddx/wddx.c     Tue May 30 02:40:49 2006
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: wddx.c,v 1.135 2006/05/26 01:55:00 iliaa Exp $ */
+/* $Id: wddx.c,v 1.136 2006/05/30 02:40:49 iliaa Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -658,7 +658,7 @@
                case IS_ARRAY:
                        ht = Z_ARRVAL_P(var);
                        if (ht->nApplyCount > 1) {
-                               php_error_docref(NULL TSRMLS_CC, E_ERROR, "WDDX 
doesn't support circular references");
+                               php_error_docref(NULL TSRMLS_CC, 
E_RECOVERABLE_ERROR, "WDDX doesn't support circular references");
                                return;
                        }
                        ht->nApplyCount++;                                      
                                                                                
@@ -669,7 +669,7 @@
                case IS_OBJECT:
                        ht = Z_OBJPROP_P(var);
                        if (ht->nApplyCount > 1) {
-                               php_error_docref(NULL TSRMLS_CC, E_ERROR, "WDDX 
doesn't support circular references");
+                               php_error_docref(NULL TSRMLS_CC, 
E_RECOVERABLE_ERROR, "WDDX doesn't support circular references");
                                return;
                        }
                        ht->nApplyCount++;

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

Reply via email to