Fix for #496173... Stupid me was using $config_data instead of $HTTP_POST_VARS array variable.. #*@& register globals...#&#@ bad habits...

git-svn-id: file:///svn/phpbb/trunk@1705 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
the_systech 2001-12-24 16:41:28 +00:00
parent b4254c74b1
commit 3e46e66d93

View file

@ -407,7 +407,7 @@ else if( !empty($HTTP_POST_VARS['ftp_file']) && !defined("PHPBB_INSTALLED") )
// //
// Error couldn't get connected... Go back to option to send file... // 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="config_data" value="' . htmlspecialchars($HTTP_POST_VARS['config_data']) . '" />';
$s_hidden_fields .= '<input type="hidden" name="send_file" value="1" />'; $s_hidden_fields .= '<input type="hidden" name="send_file" value="1" />';
if( $upgrade == 1 ) if( $upgrade == 1 )
{ {
@ -908,4 +908,4 @@ else
} }
} }
?> ?>