diff options
author | thomascube <thomas@roundcube.net> | 2007-05-17 18:41:24 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2007-05-17 18:41:24 +0000 |
commit | 41bece1a1adffb524daa2203dfb91211f63989d8 (patch) | |
tree | 7c1846c510c0b66bfe750f0bc87aca0fc48e1601 /program/include/rcmail_template.inc | |
parent | 5870871ae1f8a0f3b40436483a43cf3aafa35b2d (diff) |
Add link to message subjects (#1484257); don't make selected list items bold; remove duplicate function
Diffstat (limited to 'program/include/rcmail_template.inc')
-rw-r--r-- | program/include/rcmail_template.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/include/rcmail_template.inc b/program/include/rcmail_template.inc index 6e3fe52b8..3609bec1b 100644 --- a/program/include/rcmail_template.inc +++ b/program/include/rcmail_template.inc @@ -563,9 +563,9 @@ class rcmail_template extends rcube_html_page // make valid href to specific buttons if (in_array($attrib['command'], $MAIN_TASKS)) - $attrib['href'] = Q(rcmail_self_url(null, null, $attrib['command'])); + $attrib['href'] = Q(rcmail_url(null, null, $attrib['command'])); else if (in_array($attrib['command'], $a_static_commands)) - $attrib['href'] = Q(rcmail_self_url($attrib['command'])); + $attrib['href'] = Q(rcmail_url($attrib['command'])); } // overwrite attributes |