From f1c90701944e9fd9b705f2673f46f987dbffc678 Mon Sep 17 00:00:00 2001 From: thomasb Date: Tue, 27 Sep 2011 09:04:25 +0000 Subject: Fix typo; add attribute to allow html in labels git-svn-id: https://svn.roundcube.net/trunk@5282 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/include/rcube_template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roundcubemail/program/include/rcube_template.php b/roundcubemail/program/include/rcube_template.php index dd14931a8..9a7bee77e 100755 --- a/roundcubemail/program/include/rcube_template.php +++ b/roundcubemail/program/include/rcube_template.php @@ -689,7 +689,7 @@ class rcube_template extends rcube_html_page $vars = $attrib + array('product' => $this->config['product_name']); unset($vars['name'], $vars['command']); $label = rcube_label($attrib + array('vars' => $vars)); - return !$attrbi['noshow'] ? Q($label) : ''; + return !$attrib['noshow'] ? (get_boolean((string)$attrib['html']) ? $label : Q($label)) : ''; } break; -- cgit v1.2.3