mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-01 14:30:32 +02:00
[ticket/13442] UTF-8 symbols for database host
PHPBB3-13442
This commit is contained in:
@@ -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', '');
|
||||||
|
Reference in New Issue
Block a user