aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/install/module
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2016-12-03 12:32:57 +0100
committerTristan Darricau <github@nicofuma.fr>2016-12-03 12:32:57 +0100
commit74f49387e17d53903c65c1a82ef75bd871a62af4 (patch)
treef6faa28efa1143206f387c139390bd50cdd2edfa /phpBB/phpbb/install/module
parent0c96873e731acee531748bad142cf852fdd1d30f (diff)
parentd817f3cc674433bfe3217b58fce887c48677b382 (diff)
downloadforums-74f49387e17d53903c65c1a82ef75bd871a62af4.tar
forums-74f49387e17d53903c65c1a82ef75bd871a62af4.tar.gz
forums-74f49387e17d53903c65c1a82ef75bd871a62af4.tar.bz2
forums-74f49387e17d53903c65c1a82ef75bd871a62af4.tar.xz
forums-74f49387e17d53903c65c1a82ef75bd871a62af4.zip
Merge pull request #4539 from marc1706/ticket/14875
[ticket/14875] Add method for untrimmed input to ajax iohandler * marc1706/ticket/14875: [ticket/14875] Add raw_variable() to request mock [ticket/14875] Move raw_variable() method to request_interface [ticket/14875] Use raw_variable() method in _variable() to get raw data [ticket/14875] Add method for raw input to request and add to installer [ticket/14875] Add method for untrimmed input to ajax iohandler
Diffstat (limited to 'phpBB/phpbb/install/module')
-rw-r--r--phpBB/phpbb/install/module/obtain_data/task/obtain_database_data.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/install/module/obtain_data/task/obtain_database_data.php b/phpBB/phpbb/install/module/obtain_data/task/obtain_database_data.php
index ce720dbf76..dc7b060746 100644
--- a/phpBB/phpbb/install/module/obtain_data/task/obtain_database_data.php
+++ b/phpBB/phpbb/install/module/obtain_data/task/obtain_database_data.php
@@ -79,7 +79,7 @@ class obtain_database_data extends \phpbb\install\task_base implements \phpbb\in
$dbhost = $this->io_handler->get_input('dbhost', '', true);
$dbport = $this->io_handler->get_input('dbport', '');
$dbuser = $this->io_handler->get_input('dbuser', '');
- $dbpasswd = $this->io_handler->get_input('dbpasswd', '', true);
+ $dbpasswd = $this->io_handler->get_raw_input('dbpasswd', '');
$dbname = $this->io_handler->get_input('dbname', '');
$table_prefix = $this->io_handler->get_input('table_prefix', '');