diff --git a/workflow/engine/methods/authSources/authSources_Ajax.php b/workflow/engine/methods/authSources/authSources_Ajax.php index 2c44d7fb8..cef5514d9 100644 --- a/workflow/engine/methods/authSources/authSources_Ajax.php +++ b/workflow/engine/methods/authSources/authSources_Ajax.php @@ -166,7 +166,8 @@ try { if (is_file( PATH_RBAC . 'plugins' . PATH_SEP . $sObject )) { $sType = trim(str_replace(array("class.", ".php"), "", $sObject)); - if ($sType != "ldapAdvanced") { + // Filter Authentication Sources added by plugins, because these will be configured from another place + if ($sType != "ldapAdvanced" && $sType != "Gauth") { $arr[] = array("sType" => $sType, "sLabel" => $sType); } }