diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2009-04-28 11:18:02 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2009-04-28 11:18:02 +0000 |
commit | ab122983f740c7dbd1e962bb8306033ad4f3c360 (patch) | |
tree | 23a8dce43cf4a3b4f9aec86a1a34af9ffed8f305 /phpBB/includes/acp/acp_profile.php | |
parent | 0f085848a661b5ffe5eff8bc842abfe625752bb3 (diff) | |
download | forums-ab122983f740c7dbd1e962bb8306033ad4f3c360.tar forums-ab122983f740c7dbd1e962bb8306033ad4f3c360.tar.gz forums-ab122983f740c7dbd1e962bb8306033ad4f3c360.tar.bz2 forums-ab122983f740c7dbd1e962bb8306033ad4f3c360.tar.xz forums-ab122983f740c7dbd1e962bb8306033ad4f3c360.zip |
Fix column handling in db updater, custom profile fields an db tools for firebird DBMS (Bug #44555)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9492 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/acp_profile.php')
-rw-r--r-- | phpBB/includes/acp/acp_profile.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_profile.php b/phpBB/includes/acp/acp_profile.php index 7ab6ff7cd6..2b5ec88e5b 100644 --- a/phpBB/includes/acp/acp_profile.php +++ b/phpBB/includes/acp/acp_profile.php @@ -1539,7 +1539,7 @@ class acp_profile case 'firebird': // We are defining the biggest common value, because of the possibility to edit the min/max values of each field. - $sql = 'ALTER TABLE ' . PROFILE_FIELDS_DATA_TABLE . " ADD \"$field_ident\" "; + $sql = 'ALTER TABLE ' . PROFILE_FIELDS_DATA_TABLE . ' ADD "' . strtoupper($field_ident) . '" '; switch ($field_type) { |