2013-11-21 Sergio Martin <sergio.martin@artica.es>

* godmode/modules/manage_network_components_form.php: Fixed jquery
	code that broke the snmp3 fields when edit a snmp component
	Incident #402



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9110 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
zarzuelo 2013-11-21 11:37:41 +00:00
parent becb192d64
commit a092623706
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2013-11-21 Sergio Martin <sergio.martin@artica.es>
* godmode/modules/manage_network_components_form.php: Fixed jquery
code that broke the snmp3 fields when edit a snmp component
Incident #402
2013-11-20 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_ui.php: removed the hack for metaconsole, now

View File

@ -428,7 +428,7 @@ $(document).ready (function () {
});
});
if ($("#snmp_version").value == "3") {
if ($("#snmp_version").val() == "3") {
$("input[name=snmp3_auth_user]").css({backgroundColor: '#fff'});
$("input[name=snmp3_auth_user]").removeAttr('disabled');