Skip to content

Commit d9f3a95

Browse files
authored
Merge pull request #1002 from nextcloud/carl/fix-global
fix(settings): Fix missing global attribute
2 parents ae219d7 + c5efc91 commit d9f3a95

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

lib/Settings/Admin.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ public function getForm() {
206206
'text' => $this->l10n->t('Use POST method for SAML request (default: GET)'),
207207
'type' => 'checkbox',
208208
'required' => false,
209+
'global' => false,
209210
];
210211
$generalSettings['allow_multiple_user_back_ends'] = [
211212
'text' => $this->l10n->t('Allow the use of multiple user back-ends (e.g. LDAP)'),

tests/unit/Settings/AdminTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ public function formDataProvider() {
100100
'text' => $this->l10n->t('Use POST method for SAML request (default: GET)'),
101101
'type' => 'checkbox',
102102
'required' => false,
103+
'global' => false,
103104
],
104105
'uid_mapping' => [
105106
'text' => 'Attribute to map the UID to.',

0 commit comments

Comments
 (0)