Selaa lähdekoodia

removed case insensitivity to bugtest

Luke Ehresman 25 vuotta sitten
vanhempi
commit
13b6bc2287
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      functions/array.php

+ 1 - 1
functions/array.php

@@ -57,7 +57,7 @@
     $key=0;
     $array2 = array();
     while ($key < count($array1)) {
-        array_push($array2, strtolower($array1[$key]["$column"]));
+        array_push($array2, $array1[$key]["$column"]);
         $key++;
     }