|
From: Jonathan H. <the...@us...> - 2002-03-19 17:36:57
|
Update of /cvsroot/phpbb/phpBB2 In directory usw-pr-cvs1:/tmp/cvs-serv13557 Modified Files: install.php Log Message: Fix for bug #512279 Install now uses table prefix properly.. Index: install.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/install.php,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -r1.37 -r1.38 *** install.php 18 Mar 2002 15:21:10 -0000 1.37 --- install.php 19 Mar 2002 17:36:49 -0000 1.38 *************** *** 419,422 **** --- 419,423 ---- $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.'" />'; *************** *** 863,866 **** --- 864,868 ---- $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.'" />'; |