Module: check_mk
Branch: master
Commit: 0ead548f1be46a9b2993f9976a7e509c9ce86b2e
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=0ead548f1be46a…
Author: Andreas Boesl <ab(a)mathias-kettner.de>
Date: Thu Jul 10 15:09:20 2014 +0200
fixed broken filter: FilterHostgroupVisibility
---
web/plugins/views/filters.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/web/plugins/views/filters.py b/web/plugins/views/filters.py
index 3d46a99..ddcb967 100644
--- a/web/plugins/views/filters.py
+++ b/web/plugins/views/filters.py
@@ -65,7 +65,7 @@ class FilterHostgroupVisibility(Filter):
if html.var("hostgroupshowempty"):
return ""
else:
- return "Filter: num_hosts > 0"
+ return "Filter: num_hosts > 0\n"
# filter title info column
htmlvar
declare_filter(100, FilterText("hostregex", _("Hostname"),
"host", "host_name", "host", "~~"),