aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/install.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-06-15 23:14:04 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-06-15 23:14:04 +0000
commit692bce377829e7911ea33fae08a6cdb18166433e (patch)
tree174c6a436fe767c2c06874d3b1d2725ed89cdcda /phpBB/install/install.php
parentb87efc8994eb83dc8b97c3800143770361fe86b9 (diff)
downloadforums-692bce377829e7911ea33fae08a6cdb18166433e.tar
forums-692bce377829e7911ea33fae08a6cdb18166433e.tar.gz
forums-692bce377829e7911ea33fae08a6cdb18166433e.tar.bz2
forums-692bce377829e7911ea33fae08a6cdb18166433e.tar.xz
forums-692bce377829e7911ea33fae08a6cdb18166433e.zip
Updated Firebird schema ... "compatible" with mysql version ... NOTE the change in ucp schema, module_name becomes module_title to prevent conflict. Various script SQL issues preventing full compatibility with Firebird at present
git-svn-id: file:///svn/phpbb/trunk@4137 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/install.php')
-rw-r--r--phpBB/install/install.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/install.php b/phpBB/install/install.php
index bc8cf254c4..cd530e7c9d 100644
--- a/phpBB/install/install.php
+++ b/phpBB/install/install.php
@@ -1058,7 +1058,7 @@ if ($stage == 3)
foreach ($sql_query as $sql)
{
- $sql = trim($sql);
+ $sql = trim(str_replace('|', ';', $sql));
if (!$db->sql_query($sql))
{
$error = $db->sql_error();