aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/install/install.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/phpBB/install/install.php b/phpBB/install/install.php
index 582cc1c982..4f20661a01 100644
--- a/phpBB/install/install.php
+++ b/phpBB/install/install.php
@@ -607,11 +607,9 @@ else
$sql_query = split_sql_file($sql_query, $delimiter);
$sql_count = count($sql_query);
- @set_time_limit(30);
-
foreach ($sql_query as $sql)
{
- $sql = str_replace('|', ';', $sql) . "\n";
+ $sql = str_replace('|', ';', $sql);
if (!$db->sql_query($sql))
{