diff options
author | David M <davidmj@users.sourceforge.net> | 2007-06-07 05:58:45 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2007-06-07 05:58:45 +0000 |
commit | dd9c236e6a47fb93d2f39f746f2bac5efc62066d (patch) | |
tree | da04db2d671b6c83f434b8097d99e1ab23e53eea /phpBB/includes/acp/acp_profile.php | |
parent | 5e78e5ad95fb8608d693f8f6b5ac075cbe072e07 (diff) | |
download | forums-dd9c236e6a47fb93d2f39f746f2bac5efc62066d.tar forums-dd9c236e6a47fb93d2f39f746f2bac5efc62066d.tar.gz forums-dd9c236e6a47fb93d2f39f746f2bac5efc62066d.tar.bz2 forums-dd9c236e6a47fb93d2f39f746f2bac5efc62066d.tar.xz forums-dd9c236e6a47fb93d2f39f746f2bac5efc62066d.zip |
- Oracle, woe is you... I will say this much, this fixes Oracle's handling of empty strings... We also fix custom profiles and now provide database size for Oracle...
git-svn-id: file:///svn/phpbb/trunk@7721 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 da11868cc2..2d4091f2f9 100644 --- a/phpBB/includes/acp/acp_profile.php +++ b/phpBB/includes/acp/acp_profile.php @@ -1508,7 +1508,7 @@ class acp_profile case 'oracle': // 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 $field_ident "; switch ($field_type) { |