mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Merge pull request #4123 from lavigor/ticket/13442
[ticket/13442] UTF-8 symbols for database host
This commit is contained in:
commit
254291b644
1 changed files with 2 additions and 2 deletions
|
@ -76,7 +76,7 @@ class obtain_database_data extends \phpbb\install\task_base implements \phpbb\in
|
||||||
{
|
{
|
||||||
// Collect database data
|
// Collect database data
|
||||||
$dbms = $this->io_handler->get_input('dbms', '');
|
$dbms = $this->io_handler->get_input('dbms', '');
|
||||||
$dbhost = $this->io_handler->get_input('dbhost', '');
|
$dbhost = $this->io_handler->get_input('dbhost', '', true);
|
||||||
$dbport = $this->io_handler->get_input('dbport', '');
|
$dbport = $this->io_handler->get_input('dbport', '');
|
||||||
$dbuser = $this->io_handler->get_input('dbuser', '');
|
$dbuser = $this->io_handler->get_input('dbuser', '');
|
||||||
$dbpasswd = $this->io_handler->get_input('dbpasswd', '', true);
|
$dbpasswd = $this->io_handler->get_input('dbpasswd', '', true);
|
||||||
|
@ -115,7 +115,7 @@ class obtain_database_data extends \phpbb\install\task_base implements \phpbb\in
|
||||||
if ($use_request_data)
|
if ($use_request_data)
|
||||||
{
|
{
|
||||||
$dbms = $this->io_handler->get_input('dbms', '');
|
$dbms = $this->io_handler->get_input('dbms', '');
|
||||||
$dbhost = $this->io_handler->get_input('dbhost', '');
|
$dbhost = $this->io_handler->get_input('dbhost', '', true);
|
||||||
$dbport = $this->io_handler->get_input('dbport', '');
|
$dbport = $this->io_handler->get_input('dbport', '');
|
||||||
$dbuser = $this->io_handler->get_input('dbuser', '');
|
$dbuser = $this->io_handler->get_input('dbuser', '');
|
||||||
$dbname = $this->io_handler->get_input('dbname', '');
|
$dbname = $this->io_handler->get_input('dbname', '');
|
||||||
|
|
Loading…
Add table
Reference in a new issue