aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorthe_systech <the_systech@users.sourceforge.net>2001-12-24 16:41:28 +0000
committerthe_systech <the_systech@users.sourceforge.net>2001-12-24 16:41:28 +0000
commit3e46e66d932fe943ad672b2b370b2e685c4f2e09 (patch)
tree8db3560a4f728ba4c3e31dd4702bf3df9560a036
parentb4254c74b1427ff5aead3b9b4fb51635b0cd74e9 (diff)
downloadforums-3e46e66d932fe943ad672b2b370b2e685c4f2e09.tar
forums-3e46e66d932fe943ad672b2b370b2e685c4f2e09.tar.gz
forums-3e46e66d932fe943ad672b2b370b2e685c4f2e09.tar.bz2
forums-3e46e66d932fe943ad672b2b370b2e685c4f2e09.tar.xz
forums-3e46e66d932fe943ad672b2b370b2e685c4f2e09.zip
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
-rw-r--r--phpBB/install.php4
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
+?>