File: phpbb/install/module/obtain_data/task/obtain_update_ftp_data.php
Unmodified
Added
Modified
Removed
Line 22 | Line 22 |
---|
class obtain_update_ftp_data extends task_base { /**
|
class obtain_update_ftp_data extends task_base { /**
|
* @var \phpbb\install\helper\config
| * @var config
|
*/ protected $installer_config;
/**
|
*/ protected $installer_config;
/**
|
* @var \phpbb\install\helper\iohandler\iohandler_interface
| * @var iohandler_interface
|
*/ protected $iohandler;
| */ protected $iohandler;
|
Line 87 | Line 87 |
---|
$ftp_host = $this->iohandler->get_input('ftp_host', '', true); $ftp_user = $this->iohandler->get_input('ftp_user', '', true);
|
$ftp_host = $this->iohandler->get_input('ftp_host', '', true); $ftp_user = $this->iohandler->get_input('ftp_user', '', true);
|
$ftp_pass = htmlspecialchars_decode($this->iohandler->get_input('ftp_pass', '', true));
| $ftp_pass = html_entity_decode($this->iohandler->get_input('ftp_pass', '', true), ENT_COMPAT);
|
$ftp_path = $this->iohandler->get_input('ftp_path', '', true); $ftp_port = $this->iohandler->get_input('ftp_port', 21); $ftp_time = $this->iohandler->get_input('ftp_timeout', 10);
| $ftp_path = $this->iohandler->get_input('ftp_path', '', true); $ftp_port = $this->iohandler->get_input('ftp_port', 21); $ftp_time = $this->iohandler->get_input('ftp_timeout', 10);
|