Console: Fix inadvertent config save when clicking restart or shutdown

on /configstats
This commit is contained in:
zzz
2016-11-12 14:54:56 +00:00
parent d7a84c88cd
commit 6acc23af00

View File

@ -31,7 +31,9 @@ public class ConfigStatsHandler extends FormHandler {
@Override
protected void processForm() {
saveChanges();
if (_action != null && _action.equals("foo")) {
saveChanges();
}
}
public void setFilename(String filename) {