aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_profile_fields.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2009-06-13 15:00:33 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2009-06-13 15:00:33 +0000
commitd8e78c766b0f14f5d53e1916c341cbaccb012b4f (patch)
tree5e58a9c9e6ccdba73bfba7e649cc80f500a212b4 /phpBB/includes/functions_profile_fields.php
parent8d4ddc3b236a194b7f31e631e77366cd4f4adfd0 (diff)
downloadforums-d8e78c766b0f14f5d53e1916c341cbaccb012b4f.tar
forums-d8e78c766b0f14f5d53e1916c341cbaccb012b4f.tar.gz
forums-d8e78c766b0f14f5d53e1916c341cbaccb012b4f.tar.bz2
forums-d8e78c766b0f14f5d53e1916c341cbaccb012b4f.tar.xz
forums-d8e78c766b0f14f5d53e1916c341cbaccb012b4f.zip
like firebird, oracle uses uppercase column names if delimiter used (Fixes Bug #46015)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9585 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_profile_fields.php')
-rw-r--r--phpBB/includes/functions_profile_fields.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_profile_fields.php b/phpBB/includes/functions_profile_fields.php
index d9b6b25477..bb54e0de5b 100644
--- a/phpBB/includes/functions_profile_fields.php
+++ b/phpBB/includes/functions_profile_fields.php
@@ -386,7 +386,7 @@ class custom_profile
foreach ($cp_data as $key => $value)
{
// Firebird is case sensitive with delimiter
- $cp_data[$left_delim . (($db->sql_layer == 'firebird') ? strtoupper($key) : $key) . $right_delim] = $value;
+ $cp_data[$left_delim . (($db->sql_layer == 'firebird' || $db->sql_layer == 'oracle') ? strtoupper($key) : $key) . $right_delim] = $value;
unset($cp_data[$key]);
}