Module: check_mk
Branch: master
Commit: e8349d187808ef2d937b61a35a9cf978ed67ba47
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=e8349d187808ef…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Thu Jan 21 15:30:11 2016 +0100
Table of graph collections: make titles of collections clickable
---
web/htdocs/pagetypes.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/web/htdocs/pagetypes.py b/web/htdocs/pagetypes.py
index 3c741c8..a05d451 100644
--- a/web/htdocs/pagetypes.py
+++ b/web/htdocs/pagetypes.py
@@ -778,7 +778,7 @@ class Overridable:
# Title
table.cell(_('Title'))
title = _u(instance.title())
- if isinstance(self, PageRenderer) and not instance.is_hidden():
+ if isinstance(instance, PageRenderer) and not instance.is_hidden():
html.write("<a
href=\"%s.py?%s=%s\">%s</a>" %
(self.type_name(), self.ident_attr(), instance.name(),
html.attrencode(instance.title())))
else: