diff options
| author | Derek Held <Derek Held> | 2016-05-14 09:19:26 -0700 |
|---|---|---|
| committer | Derek Held <Derek Held> | 2016-05-14 09:19:26 -0700 |
| commit | 9c34594bc374eeeca5d79afe2d3fdffae0cd1553 (patch) | |
| tree | 018351f6b892a0ec6bfd43fd0e0a4cf0fb6f9350 /phpBB/phpbb/install/module/obtain_data | |
| parent | bf37cdf878aeb9d2c1d5195de9390db623a98ef4 (diff) | |
| download | forums-9c34594bc374eeeca5d79afe2d3fdffae0cd1553.tar forums-9c34594bc374eeeca5d79afe2d3fdffae0cd1553.tar.gz forums-9c34594bc374eeeca5d79afe2d3fdffae0cd1553.tar.bz2 forums-9c34594bc374eeeca5d79afe2d3fdffae0cd1553.tar.xz forums-9c34594bc374eeeca5d79afe2d3fdffae0cd1553.zip | |
[ticket/14595] Added smtp_port where places where smtp_host exists.
PHPBB3-14595
Diffstat (limited to 'phpBB/phpbb/install/module/obtain_data')
| -rw-r--r-- | phpBB/phpbb/install/module/obtain_data/task/obtain_email_data.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/phpBB/phpbb/install/module/obtain_data/task/obtain_email_data.php b/phpBB/phpbb/install/module/obtain_data/task/obtain_email_data.php index 606e4a2ddd..1cb4f04297 100644 --- a/phpBB/phpbb/install/module/obtain_data/task/obtain_email_data.php +++ b/phpBB/phpbb/install/module/obtain_data/task/obtain_email_data.php @@ -51,6 +51,7 @@ class obtain_email_data extends \phpbb\install\task_base implements \phpbb\insta $email_enable = $this->io_handler->get_input('email_enable', true); $smtp_delivery = $this->io_handler->get_input('smtp_delivery', ''); $smtp_host = $this->io_handler->get_input('smtp_host', ''); + $smtp_port = $this->io_handler->get_input('smtp_port', ''); $smtp_auth = $this->io_handler->get_input('smtp_auth', ''); $smtp_user = $this->io_handler->get_input('smtp_user', ''); $smtp_passwd = $this->io_handler->get_input('smtp_pass', ''); @@ -63,6 +64,7 @@ class obtain_email_data extends \phpbb\install\task_base implements \phpbb\insta $this->install_config->set('email_enable', $email_enable); $this->install_config->set('smtp_delivery', $smtp_delivery); $this->install_config->set('smtp_host', $smtp_host); + $this->install_config->set('smtp_port', $smtp_port); $this->install_config->set('smtp_auth', $smtp_auth); $this->install_config->set('smtp_user', $smtp_user); $this->install_config->set('smtp_pass', $smtp_passwd); @@ -119,6 +121,11 @@ class obtain_email_data extends \phpbb\install\task_base implements \phpbb\insta 'type' => 'text', 'default' => $smtp_host, ), + 'smtp_port' => array( + 'label' => 'SMTP_PORT', + 'type' => 'text', + 'default' => $smtp_port, + ), 'smtp_auth' => array( 'label' => 'SMTP_AUTH_METHOD', 'description' => 'SMTP_AUTH_METHOD_EXPLAIN', |
