zoe             Sun Jun 14 10:39:02 2009 UTC

  Modified files:              
    /phpruntests/src/configuration      rtIniAsCommandLineArgs.php 
  Log:
  fix to allow double equals in ini setting
  
http://cvs.php.net/viewvc.cgi/phpruntests/src/configuration/rtIniAsCommandLineArgs.php?r1=1.4&r2=1.5&diff_format=u
Index: phpruntests/src/configuration/rtIniAsCommandLineArgs.php
diff -u phpruntests/src/configuration/rtIniAsCommandLineArgs.php:1.4 
phpruntests/src/configuration/rtIniAsCommandLineArgs.php:1.5
--- phpruntests/src/configuration/rtIniAsCommandLineArgs.php:1.4        Mon May 
25 08:56:23 2009
+++ phpruntests/src/configuration/rtIniAsCommandLineArgs.php    Sun Jun 14 
10:39:02 2009
@@ -90,9 +90,9 @@
             return false;
         }
 
-        //test for ==
+        //test for ==, which is allowed
         if (strncmp($parts[1], '=', 1) === 0) {
-            return false;
+            return true;
         }
 
         //test for a=b=c



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

Reply via email to