diff options
author | the_systech <the_systech@users.sourceforge.net> | 2002-03-19 17:36:49 +0000 |
---|---|---|
committer | the_systech <the_systech@users.sourceforge.net> | 2002-03-19 17:36:49 +0000 |
commit | 5f3b7842e15d5707780e01cf34237d56bf374195 (patch) | |
tree | bcf5fa52d05ad473cab42bbf2168419aceb7b4a0 /phpBB | |
parent | 92e1d351800b76b966be63230cc38cc260ba23a5 (diff) | |
download | forums-5f3b7842e15d5707780e01cf34237d56bf374195.tar forums-5f3b7842e15d5707780e01cf34237d56bf374195.tar.gz forums-5f3b7842e15d5707780e01cf34237d56bf374195.tar.bz2 forums-5f3b7842e15d5707780e01cf34237d56bf374195.tar.xz forums-5f3b7842e15d5707780e01cf34237d56bf374195.zip |
Fix for bug #512279 Install now uses table prefix properly..
git-svn-id: file:///svn/phpbb/trunk@2352 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/install.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/install.php b/phpBB/install.php index b4d09a65f6..adce252945 100644 --- a/phpBB/install.php +++ b/phpBB/install.php @@ -418,6 +418,7 @@ else if( !empty($HTTP_POST_VARS['ftp_file']) && !defined("PHPBB_INSTALLED") ) { $s_hidden_fields .= '<input type="hidden" name="upgrade" value="1" />'; $s_hidden_fields .= '<input type="hidden" name="dbms" value="'.$dmbs.'" />'; + $s_hidden_fields .= '<input type="hidden" name="prefix" value="'.$table_prefix.'" />'; $s_hidden_fields .= '<input type="hidden" name="dbhost" value="'.$dbhost.'" />'; $s_hidden_fields .= '<input type="hidden" name="dbname" value="'.$dbname.'" />'; $s_hidden_fields .= '<input type="hidden" name="dbuser" value="'.$dbuser.'" />'; @@ -862,6 +863,7 @@ else { $s_hidden_fields .= '<input type="hidden" name="upgrade" value="1" />'; $s_hidden_fields .= '<input type="hidden" name="dbms" value="'.$dbms.'" />'; + $s_hidden_fields .= '<input type="hidden" name="prefix" value="'.$table_prefix.'" />'; $s_hidden_fields .= '<input type="hidden" name="dbhost" value="'.$dbhost.'" />'; $s_hidden_fields .= '<input type="hidden" name="dbname" value="'.$dbname.'" />'; $s_hidden_fields .= '<input type="hidden" name="dbuser" value="'.$dbuser.'" />'; |