summaryrefslogtreecommitdiff
path: root/program/include/rcube_template.php
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2011-11-23 17:40:28 +0000
committerthomascube <thomas@roundcube.net>2011-11-23 17:40:28 +0000
commitef22eee5acc31f8811a96fe314d875fc988b4a1c (patch)
treee62c80fc2ac8a12ac42ecbc172756a92444b7761 /program/include/rcube_template.php
parent4693fe11a95ee1bc3912a5ee2b3ed41c8b0b6b92 (diff)
Improve task switching for tasks added by plugins
Diffstat (limited to 'program/include/rcube_template.php')
-rwxr-xr-xprogram/include/rcube_template.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/program/include/rcube_template.php b/program/include/rcube_template.php
index 11c251ac5..1a82f7e6e 100755
--- a/program/include/rcube_template.php
+++ b/program/include/rcube_template.php
@@ -915,6 +915,7 @@ class rcube_template extends rcube_html_page
// make valid href to specific buttons
if (in_array($attrib['command'], rcmail::$main_tasks)) {
$attrib['href'] = rcmail_url(null, null, $attrib['command']);
+ $attrib['onclick'] = sprintf("%s.switch_task('%s');return false", JS_OBJECT_NAME, $attrib['command']);
}
else if ($attrib['task'] && in_array($attrib['task'], rcmail::$main_tasks)) {
$attrib['href'] = rcmail_url($attrib['command'], null, $attrib['task']);