diff options
Diffstat (limited to 'phpBB/install.php')
-rw-r--r-- | phpBB/install.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install.php b/phpBB/install.php index 84b339e308..81d181bcbb 100644 --- a/phpBB/install.php +++ b/phpBB/install.php @@ -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 ) { @@ -908,4 +908,4 @@ else } } -?>
\ No newline at end of file +?> |