File: phpbb/install/module/obtain_data/task/obtain_update_ftp_data.php
Unmodified
Added
Modified
Removed
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);
|