diff options
author | Tristan Darricau <github@nicofuma.fr> | 2016-05-15 10:17:01 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2016-05-15 10:17:01 +0200 |
commit | 40a00bd4e550c449612d56acf75ceec3a5df7bc3 (patch) | |
tree | 018351f6b892a0ec6bfd43fd0e0a4cf0fb6f9350 /phpBB/phpbb/install/installer_configuration.php | |
parent | 961ffee6844b44b306fa1fb1f6e2a0e958638896 (diff) | |
parent | 9c34594bc374eeeca5d79afe2d3fdffae0cd1553 (diff) | |
download | forums-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.php | 3 |
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() |