From 56c6228afec8a2bd9f7b05166800cd9f97aecc8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Pe=CC=81rez=20Crespo?= <jaime.perez@uninett.no> Date: Wed, 17 Oct 2018 16:23:21 +0200 Subject: [PATCH] bugfix: We should only automatically select an auth source when none was specified in the URL. --- modules/core/lib/Controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/lib/Controller.php b/modules/core/lib/Controller.php index 6d17db639..97df0cfd6 100644 --- a/modules/core/lib/Controller.php +++ b/modules/core/lib/Controller.php @@ -105,7 +105,7 @@ class Controller unset($this->sources['admin']); } - if (count($this->sources) === 1) { // we only have one source available + if (count($this->sources) === 1 && $as === null) { // we only have one source available $as = key($this->sources); } -- GitLab