mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
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:
parent
b4254c74b1
commit
3e46e66d93
1 changed files with 2 additions and 2 deletions
|
@ -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...
|
||||
//
|
||||
$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" />';
|
||||
if( $upgrade == 1 )
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue