From 267abcbea7a400b37f88c4d7e9911b44a888dea4 Mon Sep 17 00:00:00 2001 From: lkehresman Date: Fri, 14 Apr 2000 14:25:01 +0000 Subject: [PATCH] removed case insensitivity to bugtest git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@427 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/array.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/array.php b/functions/array.php index cf5f23de..9e83a195 100644 --- a/functions/array.php +++ b/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++; } -- 2.25.1