From b236a17548ba36d72d4c061a09470040a6cc160e Mon Sep 17 00:00:00 2001 From: MarkusGaertner Date: Fri, 20 Dec 2024 16:22:08 +0100 Subject: [PATCH] remove dumvar, strtoupper for Keys --- src/public/connect.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/public/connect.php b/src/public/connect.php index 4272058..5e6f772 100644 --- a/src/public/connect.php +++ b/src/public/connect.php @@ -133,11 +133,11 @@ MSQL; { foreach ($aFields as $Key => $Value) { + $Key = strtoupper($Key); $Order[$Key] =$Value; } } } - dumpvar($Order,true); return $Order; }