From e4703a6f86b2e92d376f9b7ec4d23994b4a7728e Mon Sep 17 00:00:00 2001 From: mdtrooper Date: Fri, 29 May 2015 16:48:14 +0200 Subject: [PATCH] Fixed the function 'oracle_encapsule_fields_with_same_name_to_instructions'. --- pandora_console/include/db/oracle.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/db/oracle.php b/pandora_console/include/db/oracle.php index 57d48d099d..245a8db553 100644 --- a/pandora_console/include/db/oracle.php +++ b/pandora_console/include/db/oracle.php @@ -450,7 +450,7 @@ function oracle_encapsule_fields_with_same_name_to_instructions($field) { if ($return[0] !== '"') { // The columns declared without quotes are converted to uppercase in oracle. // A column named asd is equal to asd, ASD or "ASD", but no to "asd". - $return = '"' . strtoupper($return) . '"'; + $return = '"' . $return . '"'; } }