diff --git a/www/web-proxy-sso/Makefile b/www/web-proxy-sso/Makefile index afb7d7cef..dabf63449 100644 --- a/www/web-proxy-sso/Makefile +++ b/www/web-proxy-sso/Makefile @@ -1,5 +1,6 @@ PLUGIN_NAME= web-proxy-sso PLUGIN_VERSION= 2.2 +PLUGIN_REVISION= 1 PLUGIN_COMMENT= Kerberos authentication module PLUGIN_DEPENDS= msktutil cyrus-sasl-gssapi PLUGIN_MAINTAINER= evbevz@gmail.com diff --git a/www/web-proxy-sso/src/opnsense/mvc/app/views/OPNsense/ProxySSO/index.volt b/www/web-proxy-sso/src/opnsense/mvc/app/views/OPNsense/ProxySSO/index.volt index ee51ed264..0160778b9 100644 --- a/www/web-proxy-sso/src/opnsense/mvc/app/views/OPNsense/ProxySSO/index.volt +++ b/www/web-proxy-sso/src/opnsense/mvc/app/views/OPNsense/ProxySSO/index.volt @@ -114,7 +114,7 @@ // clear data $("#" + index).html(""); - $(".help-block[for='" + index + "']").html(""); + $(".help-block[id*='" + index + "']").html(""); if(value.status == "ok") { jQuery('
', { @@ -122,7 +122,7 @@ class: 'fa fa-check-circle text-success', }).appendTo("#" + index); if(value.message) { - $(".help-block[for='" + index + "']").html(value.message); + $(".help-block[id*='" + index + "']").html(value.message); } } else if(value.status == "failure") { @@ -131,7 +131,7 @@ class: 'fa fa-times-circle text-danger', }).appendTo("#" + index); if(value.message) { - $(".help-block[for='" + index + "']").html(value.message); + $(".help-block[id*='" + index + "']").html(value.message); } } else { @@ -143,7 +143,7 @@ id: index + '_dump', text: htmlDecode(value.dump), class: 'hidden', - }).appendTo(".help-block[for='" + index + "']"); + }).appendTo(".help-block[id*='" + index + "']"); jQuery('', { text: "{{ lang._('Show dump') }}", href: 'javascript:showDump("' + index + '");',