aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/convertors/functions_phpbb20.php
diff options
context:
space:
mode:
authorDavid M <davidmj@users.sourceforge.net>2007-06-16 13:49:49 +0000
committerDavid M <davidmj@users.sourceforge.net>2007-06-16 13:49:49 +0000
commit367f5103d96b192dfca453e6c1a9e4f1a96b8122 (patch)
treef81e47becef01427a64516651c3d26a89e0ad314 /phpBB/install/convertors/functions_phpbb20.php
parent27c082d99ccf135f807de624a3e215e9d5c04b34 (diff)
downloadforums-367f5103d96b192dfca453e6c1a9e4f1a96b8122.tar
forums-367f5103d96b192dfca453e6c1a9e4f1a96b8122.tar.gz
forums-367f5103d96b192dfca453e6c1a9e4f1a96b8122.tar.bz2
forums-367f5103d96b192dfca453e6c1a9e4f1a96b8122.tar.xz
forums-367f5103d96b192dfca453e6c1a9e4f1a96b8122.zip
- Oracle can't handle IN clauses with more than 1000 elements (Bug #12449)
- Firebird can now work properly in PHP4 git-svn-id: file:///svn/phpbb/trunk@7767 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/convertors/functions_phpbb20.php')
-rw-r--r--phpBB/install/convertors/functions_phpbb20.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/convertors/functions_phpbb20.php b/phpBB/install/convertors/functions_phpbb20.php
index ca4f49d938..5c7bf2f903 100644
--- a/phpBB/install/convertors/functions_phpbb20.php
+++ b/phpBB/install/convertors/functions_phpbb20.php
@@ -1711,7 +1711,7 @@ function phpbb_check_username_collisions()
break;
case 'oracle':
- $create_sql = 'CREATE TABLE ' . $table_prefix . 'userconv
+ $create_sql = 'CREATE TABLE ' . $table_prefix . 'userconv (
user_id number(8) NOT NULL,
username_clean varchar2(255) DEFAULT \'\'
)';