diff --git a/templates/selectidp-dropdown.php b/templates/selectidp-dropdown.php index 7b0f531b58a0123ed2ae63970d0ad0c707c2896a..3d8e24a001b9d656dafce91fa354e316a3436c77 100644 --- a/templates/selectidp-dropdown.php +++ b/templates/selectidp-dropdown.php @@ -32,6 +32,12 @@ foreach ($this->data['idplist'] AS $idpentry) { <input type="hidden" name="returnIDParam" value="<?php echo htmlspecialchars($this->data['returnIDParam']); ?>" /> <select id="dropdownlist" name="idpentityid"> <?php + + usort($this->data['idplist'], function($idpentry1, $idpentry2) { + return strcmp($this->t('idpname_' . $idpentry1['entityid']), + $this->t('idpname_' . $idpentry2['entityid'])); + + }); foreach ($this->data['idplist'] AS $idpentry) {