aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/install/installer_configuration.php
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2016-05-15 10:17:01 +0200
committerTristan Darricau <github@nicofuma.fr>2016-05-15 10:17:01 +0200
commit40a00bd4e550c449612d56acf75ceec3a5df7bc3 (patch)
tree018351f6b892a0ec6bfd43fd0e0a4cf0fb6f9350 /phpBB/phpbb/install/installer_configuration.php
parent961ffee6844b44b306fa1fb1f6e2a0e958638896 (diff)
parent9c34594bc374eeeca5d79afe2d3fdffae0cd1553 (diff)
downloadforums-40a00bd4e550c449612d56acf75ceec3a5df7bc3.tar
forums-40a00bd4e550c449612d56acf75ceec3a5df7bc3.tar.gz
forums-40a00bd4e550c449612d56acf75ceec3a5df7bc3.tar.bz2
forums-40a00bd4e550c449612d56acf75ceec3a5df7bc3.tar.xz
forums-40a00bd4e550c449612d56acf75ceec3a5df7bc3.zip
Merge pull request #4319 from derekheld/ticket/14595
[ticket/14595] Installer will now ask for a SMTP port as part of email setup. * derekheld/ticket/14595: [ticket/14595] Added smtp_port where places where smtp_host exists. PHPBB3-14595 [ticket/14595] Added SMTP port to getConfigTreeBuilder PHPBB3-14595
Diffstat (limited to 'phpBB/phpbb/install/installer_configuration.php')
-rw-r--r--phpBB/phpbb/install/installer_configuration.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/phpbb/install/installer_configuration.php b/phpBB/phpbb/install/installer_configuration.php
index ab02da8686..c660c99d0f 100644
--- a/phpBB/phpbb/install/installer_configuration.php
+++ b/phpBB/phpbb/install/installer_configuration.php
@@ -93,6 +93,9 @@ class installer_configuration implements ConfigurationInterface
->scalarNode('smtp_host')
->defaultValue(null)
->end()
+ ->scalarNode('smtp_port')
+ ->defaultValue(null)
+ ->end()
->scalarNode('smtp_auth')
->defaultValue(null)
->end()