Fixed deselection on config page, removed 'print repr(extra)' used for testing

This commit is contained in:
rembo10
2012-08-19 12:44:39 +05:30
parent c19354b0f9
commit 2cc9685877
2 changed files with 1 additions and 2 deletions

View File

@@ -874,7 +874,7 @@ m<%inherit file="base.html"/>
$("#${extra}").attr("checked", true);
}
else {
$("${extra}").attr("checked", false);
$("#${extra}").attr("checked", false);
}
});
%endfor

View File

@@ -616,7 +616,6 @@ class WebInterface(object):
i = 1
for extra in extras_list:
print repr(extra)
if extra:
temp_extras_list.append(i)
i+=1