From 356a67fa5476dc288c5a9704fdedf3644cedf596 Mon Sep 17 00:00:00 2001 From: thomascube Date: Fri, 24 Jul 2009 10:36:52 +0000 Subject: Improve button capabilities --- program/include/rcube_template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'program/include') diff --git a/program/include/rcube_template.php b/program/include/rcube_template.php index 599f30cdf..3d894b5b6 100755 --- a/program/include/rcube_template.php +++ b/program/include/rcube_template.php @@ -876,7 +876,7 @@ class rcube_template extends rcube_html_page $link_attrib = array('href', 'onclick', 'onmouseover', 'onmouseout', 'onmousedown', 'onmouseup', 'target'); } else if ($attrib['type']=='link') { - $btn_content = $attrib['label'] ? $attrib['label'] : $attrib['command']; + $btn_content = isset($attrib['content']) ? $attrib['content'] : ($attrib['label'] ? $attrib['label'] : $attrib['command']); $link_attrib = array('href', 'onclick', 'title', 'id', 'class', 'style', 'tabindex', 'target'); } else if ($attrib['type']=='input') { -- cgit v1.2.3