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
path: root/lib
diff options
context:
space:
mode:
authorBjoern Schiessle <bjoern@schiessle.org>2018-12-12 22:22:03 +0300
committerBjoern Schiessle <bjoern@schiessle.org>2018-12-12 22:22:03 +0300
commite9f58dae967c48b71baedbbfed899f50f327d3a2 (patch)
tree8e92548344935396b2ce11b198b4b1e1ce0d8202 /lib
parentb76a69400cb4239c9f99f45cd3ea32951b2a8a84 (diff)
sort idps alphabetically
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/SAMLSettings.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/SAMLSettings.php b/lib/SAMLSettings.php
index 58bd1299..39fd1019 100644
--- a/lib/SAMLSettings.php
+++ b/lib/SAMLSettings.php
@@ -71,6 +71,8 @@ class SAMLSettings {
$result[$id] = $this->config->getAppValue('user_saml', $prefix . 'general-idp0_display_name', '');
}
+ asort($result);
+
return $result;
}