diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2018-08-23 13:37:15 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2018-08-23 17:58:35 +0200 |
commit | 7807add02d3a7b2a91de5c22ad9a6e75c34c470f (patch) | |
tree | 35c1c7f7f834a46846c7fa4c028cd919e3afb1e6 /apps/user_ldap/tests | |
parent | c0f48a7b4002c9def9f13fe54114f3f08a86240b (diff) | |
download | nextcloud-server-7807add02d3a7b2a91de5c22ad9a6e75c34c470f.tar.gz nextcloud-server-7807add02d3a7b2a91de5c22ad9a6e75c34c470f.zip |
[LDAP] The WebUI Wizard also should not assign empty config IDs
With 689df9a843dd0505088143de039af775a3f92612 the behaviour to assign only
non-empty config IDs was introduced. Only, this was only effective for CLI
and OCS API.
Related to #3270.
The web UI creates now also a full configuration on first load. This fixes
#5094.
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/user_ldap/tests')
-rw-r--r-- | apps/user_ldap/tests/Settings/AdminTest.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/user_ldap/tests/Settings/AdminTest.php b/apps/user_ldap/tests/Settings/AdminTest.php index 8161896e719..84004b9d465 100644 --- a/apps/user_ldap/tests/Settings/AdminTest.php +++ b/apps/user_ldap/tests/Settings/AdminTest.php @@ -56,10 +56,8 @@ class AdminTest extends TestCase { * @UseDB */ public function testGetForm() { - - $helper = new Helper(\OC::$server->getConfig()); - $prefixes = $helper->getServerConfigurationPrefixes(); - $hosts = $helper->getServerConfigurationHosts(); + $prefixes = ['s01']; + $hosts = ['s01' => '']; $wControls = new Template('user_ldap', 'part.wizardcontrols'); $wControls = $wControls->fetchPage(); |