dmitry          Wed May  3 11:24:51 2006 UTC

  Modified files:              
    /php-src/main       php_variables.c 
  Log:
  Fixed bug #37276 (problems witch $_POST array)
  
  
http://cvs.php.net/viewcvs.cgi/php-src/main/php_variables.c?r1=1.126&r2=1.127&diff_format=u
Index: php-src/main/php_variables.c
diff -u php-src/main/php_variables.c:1.126 php-src/main/php_variables.c:1.127
--- php-src/main/php_variables.c:1.126  Tue Apr 18 06:58:54 2006
+++ php-src/main/php_variables.c        Wed May  3 11:24:51 2006
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: php_variables.c,v 1.126 2006/04/18 06:58:54 dmitry Exp $ */
+/* $Id: php_variables.c,v 1.127 2006/05/03 11:24:51 dmitry Exp $ */
 
 #include <stdio.h>
 #include "php.h"
@@ -177,7 +177,7 @@
                                is_array = 1;
                                *ip = 0;
                        } else {
-                               is_array = 0;
+                               goto plain_var;
                        }
                }
        } else {

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

Reply via email to