Fixed "avg only" in module graphs. Ticket #2740

This commit is contained in:
Arturo Gonzalez Diaz 2015-10-07 11:52:27 +02:00
parent c5069de8ad
commit 5c1fdcde8a

View File

@ -92,10 +92,10 @@ $id = get_parameter('id');
function show_others() { function show_others() {
if (!$("#checkbox-avg_only").attr('checked')) { if (!$("#checkbox-avg_only").attr('checked')) {
$("#hidden-show_other").val(1); $("#hidden-show_other").val(0);
} }
else { else {
$("#hidden-show_other").val(0); $("#hidden-show_other").val(1);
} }
} }
//--> //-->