--- /usr/local/www/system_authservers.php.orig 2016-06-28 02:34:37.049306000 +0200+++ system_authservers.php 2016-06-28 02:35:55.390666000 +0200@@ -35,7 +35,8 @@ 'ldap' => gettext("LDAP"), 'radius' => gettext("Radius"), 'voucher' => gettext("Voucher"),- 'totp' => gettext("Local + Timebased One Time Password")+ 'totp' => gettext("Local + Timebased One Time Password"),+ 'ssoproxyad' => gettext("SSO Proxy AD") ); @@ -354,6 +355,7 @@ $(".auth_ldap").addClass('hidden'); $(".auth_voucher").addClass('hidden'); $(".auth_totp").addClass('hidden');+ $(".auth_ssoproxyad").addClass('hidden'); if ($("#type").val() == 'ldap') { $(".auth_ldap").removeClass('hidden'); } else if ($("#type").val() == 'radius') {@@ -362,6 +364,8 @@ $(".auth_voucher").removeClass('hidden'); } else if ($("#type").val() == 'totp') { $(".auth_totp").removeClass('hidden');+ } else if ($("#type").val() == 'ssoproxyad') {+ $(".auth_ssoproxyad").removeClass('hidden'); } });