mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/14769] Fix CLI installer configuration compatibility with SF 3
PHPBB3-14769
This commit is contained in:
parent
6f31d334e0
commit
b8260cadf0
1 changed files with 4 additions and 5 deletions
|
@ -48,9 +48,9 @@ class installer_configuration implements ConfigurationInterface
|
||||||
->cannotBeEmpty()
|
->cannotBeEmpty()
|
||||||
->end()
|
->end()
|
||||||
->scalarNode('description')
|
->scalarNode('description')
|
||||||
->defaultValue('My amazing new phpBB board')
|
->defaultValue('My amazing new phpBB board')
|
||||||
->cannotBeEmpty()
|
->cannotBeEmpty()
|
||||||
->end()
|
->end()
|
||||||
->end()
|
->end()
|
||||||
->end()
|
->end()
|
||||||
->arrayNode('database')
|
->arrayNode('database')
|
||||||
|
@ -128,12 +128,11 @@ class installer_configuration implements ConfigurationInterface
|
||||||
->integerNode('server_port')
|
->integerNode('server_port')
|
||||||
->defaultValue(80)
|
->defaultValue(80)
|
||||||
->min(1)
|
->min(1)
|
||||||
->cannotBeEmpty()
|
|
||||||
->end()
|
->end()
|
||||||
->scalarNode('script_path')
|
->scalarNode('script_path')
|
||||||
->defaultValue('/')
|
->defaultValue('/')
|
||||||
->cannotBeEmpty()
|
->cannotBeEmpty()
|
||||||
->end()
|
->end()
|
||||||
->end()
|
->end()
|
||||||
->end()
|
->end()
|
||||||
->end()
|
->end()
|
||||||
|
|
Loading…
Add table
Reference in a new issue