derick                                   Mon, 31 Jan 2011 23:11:42 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=307892

Log:
- Don't lower case setting names; some of them actually have upper case
  characters.

Changed paths:
    U   php/php-src/branches/PHP_5_3/run-tests.php
    U   php/php-src/trunk/run-tests.php

Modified: php/php-src/branches/PHP_5_3/run-tests.php
===================================================================
--- php/php-src/branches/PHP_5_3/run-tests.php  2011-01-31 21:20:57 UTC (rev 
307891)
+++ php/php-src/branches/PHP_5_3/run-tests.php  2011-01-31 23:11:42 UTC (rev 
307892)
@@ -2143,7 +2143,7 @@

                if (strpos($setting, '=') !== false) {
                        $setting = explode("=", $setting, 2);
-                       $name = trim(strtolower($setting[0]));
+                       $name = trim($setting[0]);
                        $value = trim($setting[1]);

                        if ($name == 'extension') {

Modified: php/php-src/trunk/run-tests.php
===================================================================
--- php/php-src/trunk/run-tests.php     2011-01-31 21:20:57 UTC (rev 307891)
+++ php/php-src/trunk/run-tests.php     2011-01-31 23:11:42 UTC (rev 307892)
@@ -2143,7 +2143,7 @@

                if (strpos($setting, '=') !== false) {
                        $setting = explode("=", $setting, 2);
-                       $name = trim(strtolower($setting[0]));
+                       $name = trim($setting[0]);
                        $value = trim($setting[1]);

                        if ($name == 'extension') {

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

Reply via email to