|
From: Jonathan H. <the...@us...> - 2001-12-24 16:41:32
|
Update of /cvsroot/phpbb/phpBB2 In directory usw-pr-cvs1:/tmp/cvs-serv17925 Modified Files: install.php Log Message: Fix for #496173... Stupid me was using $config_data instead of $HTTP_POST_VARS array variable.. #*@& register globals...#&#@ bad habits... Index: install.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/install.php,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -r1.25 -r1.26 *** install.php 2001/12/22 16:22:45 1.25 --- install.php 2001/12/24 16:41:28 1.26 *************** *** 408,412 **** // Error couldn't get connected... Go back to option to send file... // ! $s_hidden_fields = '<input type="hidden" name="config_data" value="' . htmlspecialchars($config_data) . '" />'; $s_hidden_fields .= '<input type="hidden" name="send_file" value="1" />'; if( $upgrade == 1 ) --- 408,412 ---- // Error couldn't get connected... Go back to option to send file... // ! $s_hidden_fields = '<input type="hidden" name="config_data" value="' . htmlspecialchars($HTTP_POST_VARS['config_data']) . '" />'; $s_hidden_fields .= '<input type="hidden" name="send_file" value="1" />'; if( $upgrade == 1 ) *************** *** 909,911 **** } ! ?> \ No newline at end of file --- 909,911 ---- } ! ?> |