Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/user_saml.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@protonmail.com>2021-12-10 10:16:06 +0300
committerblizzz (Rebase PR Action) <blizzz@users.noreply.github.com>2022-04-07 23:29:03 +0300
commit24a632588caa53a8a657ba5a0d01bd7b4941381e (patch)
tree2684151178d460c6d14bd70f6aaa75bc76673c4d /lib/Command
parent66759ce3ebd56106c7b0988e6ae521891812c1db (diff)
Add regex routes requirement to providerId
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'lib/Command')
-rw-r--r--lib/Command/ConfigSet.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Command/ConfigSet.php b/lib/Command/ConfigSet.php
index 8bc4af85..8f55f8bc 100644
--- a/lib/Command/ConfigSet.php
+++ b/lib/Command/ConfigSet.php
@@ -68,7 +68,7 @@ class ConfigSet extends Base {
$settings = $this->samlSettings->get($pId);
foreach ($input->getOptions() as $key => $value) {
- if(!in_array($key, SAMLSettings::IDP_CONFIG_KEYS) || $value === null) {
+ if (!in_array($key, SAMLSettings::IDP_CONFIG_KEYS) || $value === null) {
continue;
}
if ($value === '') {