Dependencies: Fix disable_notifications = true as default setting

fixes #7257
This commit is contained in:
Michael Friedrich 2014-10-11 19:33:03 +02:00
parent 38b994d9cd
commit 56327f8e35
1 changed files with 3 additions and 1 deletions

View File

@ -26,7 +26,9 @@ class Dependency : CustomVarObject < DependencyNameComposer
int state_filter_real (StateFilter);
[config] bool disable_checks;
[config] bool disable_notifications;
[config] bool disable_notifications {
default {{{ return true; }}}
};
};
}