aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/index.php
diff options
context:
space:
mode:
authorGraham Eames <grahamje@users.sourceforge.net>2006-06-18 11:55:45 +0000
committerGraham Eames <grahamje@users.sourceforge.net>2006-06-18 11:55:45 +0000
commitf9f10be464369053a505b5c4c1de9e29f38247b2 (patch)
tree2a0ba7102ef084b6acf02a96da19b75febb2e026 /phpBB/install/index.php
parent6cf4180bb7ce73c344477730388a339e6a8e9fdb (diff)
downloadforums-f9f10be464369053a505b5c4c1de9e29f38247b2.tar
forums-f9f10be464369053a505b5c4c1de9e29f38247b2.tar.gz
forums-f9f10be464369053a505b5c4c1de9e29f38247b2.tar.bz2
forums-f9f10be464369053a505b5c4c1de9e29f38247b2.tar.xz
forums-f9f10be464369053a505b5c4c1de9e29f38247b2.zip
Misc installation bugs
git-svn-id: file:///svn/phpbb/trunk@6095 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/index.php')
-rwxr-xr-xphpBB/install/index.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/phpBB/install/index.php b/phpBB/install/index.php
index b2e36cd047..87766d03d4 100755
--- a/phpBB/install/index.php
+++ b/phpBB/install/index.php
@@ -332,7 +332,7 @@ class module
*/
function page_footer()
{
- global $template;
+ global $db, $template;
$template->display('body');
@@ -545,9 +545,7 @@ class module
'MESSAGE_TEXT' => '<p>' . basename($file) . ' [ ' . $line . ' ]</p><p>SQL : ' . $sql . '</p><p><b>' . $error . '</b></p>',
));
- $db->sql_close();
$this->page_footer();
- exit;
}
/**
@@ -573,7 +571,7 @@ class module
$rows = (int) $tpl_type[1];
$cols = (int) $tpl_type[2];
- $tpl = '<textarea id="' . $key . '" name="' . $name . '" rows="' . $rows . '" cols="' . $cols . '">' . $value . '</textarea>';
+ $tpl = '<textarea id="' . $name . '" name="' . $name . '" rows="' . $rows . '" cols="' . $cols . '">' . $value . '</textarea>';
break;
case 'radio':