Module: check_mk
Branch: master
Commit: 1601aedbce7d85302bc1e14906d3a33eb318d8bc
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=1601aedbce7d85…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Thu Apr 17 09:41:45 2014 +0200
Fix attrencode in notification tooltip
---
web/htdocs/htmllib.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/web/htdocs/htmllib.py b/web/htdocs/htmllib.py
index 6862841..488852f 100644
--- a/web/htdocs/htmllib.py
+++ b/web/htdocs/htmllib.py
@@ -326,7 +326,7 @@ class html:
'src="images/button_%s_lo.png" '
'onmouseover=\"hilite_icon(this, 1)\" '
'onmouseout=\"hilite_icon(this, 0)\">'
- '</a>' % (id, onclick, style, target, cssclass, url,
help, icon))
+ '</a>' % (id, onclick, style, target, cssclass, url,
self.attrencode(help), icon))
def empty_icon_button(self):
self.write('<img class="iconbutton trans"
src="images/trans.png">')