* configstats.jsp: Fix full stats checkbox default

This commit is contained in:
zzz
2010-04-12 19:12:04 +00:00
parent 0f502b4229
commit aac96b15b0
2 changed files with 3 additions and 6 deletions

View File

@ -139,9 +139,6 @@ public class ConfigStatsHelper extends HelperBase {
public boolean getCurrentCanBeGraphed() { return _currentCanBeGraphed; }
public String getExplicitFilter() { return _filter; }
public boolean getIsFull() {
String f = _context.getProperty(StatManager.PROP_STAT_FULL);
if (f != null && f.equals("true"))
return true;
return false;
return _context.getBooleanPropertyDefaultTrue(StatManager.PROP_STAT_FULL);
}
}