diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-03-20 02:26:04 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-03-20 02:26:04 +0000 |
commit | 276ea6ced4fb84867539d14cdb34789070ecda7d (patch) | |
tree | 6a2f14cb1318d360d8ff0c374d075e6839ed6835 /phpBB/install | |
parent | 49cbde66d976e0b5cf5a1900d915442b0af8b5ca (diff) | |
download | forums-276ea6ced4fb84867539d14cdb34789070ecda7d.tar forums-276ea6ced4fb84867539d14cdb34789070ecda7d.tar.gz forums-276ea6ced4fb84867539d14cdb34789070ecda7d.tar.bz2 forums-276ea6ced4fb84867539d14cdb34789070ecda7d.tar.xz forums-276ea6ced4fb84867539d14cdb34789070ecda7d.zip |
Remove debugging stuff
git-svn-id: file:///svn/phpbb/trunk@3692 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/install.php | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/phpBB/install/install.php b/phpBB/install/install.php index 327b1d3e98..582cc1c982 100644 --- a/phpBB/install/install.php +++ b/phpBB/install/install.php @@ -607,13 +607,11 @@ else $sql_query = split_sql_file($sql_query, $delimiter); $sql_count = count($sql_query); -set_time_limit(15); -/* + @set_time_limit(30); + foreach ($sql_query as $sql) { - echo "<br />" . $sql = str_replace('|', ';', $sql); - echo "\n"; - flush(); + $sql = str_replace('|', ';', $sql) . "\n"; if (!$db->sql_query($sql)) { @@ -624,7 +622,7 @@ set_time_limit(15); exit; } } -*/ + // Ok tables have been built, let's fill in the basic information $sql_query = @fread(@fopen($dbms_basic, 'r'), @filesize($dbms_basic)); $sql_query = preg_replace('#phpbb_#', $table_prefix, $sql_query); @@ -635,9 +633,6 @@ set_time_limit(15); foreach ($sql_query as $sql) { - echo "<br />" . $sql; - echo "\n"; - flush(); if (!$db->sql_query($sql)) { $error = $db->sql_error(); |