* configstats.jsp: Fix NPE when no stats checked (thanks nothome27!)

This commit is contained in:
zzz
2008-06-30 03:07:52 +00:00
parent 14099ace69
commit 28da17276c

View File

@ -25,6 +25,7 @@ public class ConfigStatsHandler extends FormHandler {
public ConfigStatsHandler() { public ConfigStatsHandler() {
super(); super();
_stats = new ArrayList(); _stats = new ArrayList();
_graphs = "";
_explicitFilter = false; _explicitFilter = false;
_isFull = false; _isFull = false;
} }