1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/14595] Added smtp_port where places where smtp_host exists.

PHPBB3-14595
This commit is contained in:
Derek Held
2016-05-14 09:19:26 -07:00
parent bf37cdf878
commit 9c34594bc3
4 changed files with 13 additions and 0 deletions

View File

@@ -190,6 +190,10 @@ class add_config_settings extends \phpbb\install\task_base
SET config_value = '" . $this->db->sql_escape($this->install_config->get('smtp_host')) . "'
WHERE config_name = 'smtp_host'",
'UPDATE ' . $this->config_table . "
SET config_value = '" . $this->db->sql_escape($this->install_config->get('smtp_port')) . "'
WHERE config_name = 'smtp_port'",
'UPDATE ' . $this->config_table . "
SET config_value = '" . $this->db->sql_escape($this->install_config->get('smtp_auth')) . "'
WHERE config_name = 'smtp_auth_method'",