From 4c48c00f3a3dd4ed01575e406948f6f832a5612e Mon Sep 17 00:00:00 2001 From: Pieter van der Meulen <pieter.vanderMeulen@surfnet.nl> Date: Wed, 6 Dec 2017 11:44:57 +0100 Subject: [PATCH] Fix: Getting '0' instead of key of the last array index --- modules/core/www/login.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/www/login.php b/modules/core/www/login.php index 283950d6c..d67a44b42 100644 --- a/modules/core/www/login.php +++ b/modules/core/www/login.php @@ -10,7 +10,7 @@ if (isset($sources['admin'])) { //if only 1 auth if (count($sources)==1) { - $_REQUEST['as'] = key(end($sources)); + $_REQUEST['as'] = key($sources); } if (!array_key_exists('as', $_REQUEST)) { -- GitLab