From 476f271aa4bd7ba7b9b732f90f28d2c0070e3ad4 Mon Sep 17 00:00:00 2001 From: David M Date: Sun, 12 Feb 2006 21:03:18 +0000 Subject: [PATCH] - Fixes a weird bug regarding SQL parsing.. git-svn-id: file:///svn/phpbb/trunk@5554 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install/install.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/install/install.php b/phpBB/install/install.php index f9ef1136e5..018b8a1dfd 100644 --- a/phpBB/install/install.php +++ b/phpBB/install/install.php @@ -1082,7 +1082,7 @@ if ($stage == 3) foreach ($sql_query as $sql) { - $sql = trim(str_replace('|', ';', $sql)); + //$sql = trim(str_replace('|', ';', $sql)); if (!$db->sql_query($sql)) { $error = $db->sql_error(); @@ -1117,7 +1117,7 @@ if ($stage == 3) foreach ($sql_query as $sql) { - $sql = trim(str_replace('|', ';', $sql)); + //$sql = trim(str_replace('|', ';', $sql)); if (!$db->sql_query($sql)) { $error = $db->sql_error();