Module: check_mk
Branch: master
Commit: f6ae40bffffcca82f86083cfed569a6efc30db5c
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=f6ae40bffffcca…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Tue Nov 29 10:40:26 2011 +0100
Fix volatile with empty topic
---
web/htdocs/wato.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/web/htdocs/wato.py b/web/htdocs/wato.py
index c0de3d1..422571e 100644
--- a/web/htdocs/wato.py
+++ b/web/htdocs/wato.py
@@ -3873,7 +3873,7 @@ def configure_attributes(hosts, for_what, parent, myself=None,
without_attribute
if len(topics) > 1:
html.write("</table>")
html.end_foldable_container() # end of topic
- if topic_is_volatile:
+ if topic:
volatile_topics.append(topic.encode('utf-8'))
if topic == topics[-1]:
html.write('<table class="form nomargin">')