diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-03-20 02:33:29 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-03-20 02:33:29 +0000 |
commit | ab3209af48545c6d59fae7dac0f4419c455c6e73 (patch) | |
tree | e0d8ec0ffe7013ab27d1d16267c6b052268f3587 | |
parent | 4352c59cee5222fcbb0e933b2a7648a1b9903add (diff) | |
download | forums-ab3209af48545c6d59fae7dac0f4419c455c6e73.tar forums-ab3209af48545c6d59fae7dac0f4419c455c6e73.tar.gz forums-ab3209af48545c6d59fae7dac0f4419c455c6e73.tar.bz2 forums-ab3209af48545c6d59fae7dac0f4419c455c6e73.tar.xz forums-ab3209af48545c6d59fae7dac0f4419c455c6e73.zip |
oops, missed a bit
git-svn-id: file:///svn/phpbb/trunk@3694 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/install/install.php | 4 |
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)) { |