diff options
author | alecpl <alec@alec.pl> | 2012-03-15 18:33:17 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2012-03-15 18:33:17 +0000 |
commit | b9ce92d883b30172b6185ac4dd1a922b3c414f0f (patch) | |
tree | f1d7e8672ee27a2ac34c4af2bf75047f627f63cc /program/include | |
parent | a621a9d7ecf334c4894ef8f5168eb6208e5ae0e4 (diff) |
- Fix lack of warning when switching task in compose window (#1488399)
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/rcube_template.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_template.php b/program/include/rcube_template.php index 94fa6763c..bec84c97a 100644 --- a/program/include/rcube_template.php +++ b/program/include/rcube_template.php @@ -936,7 +936,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']); + $attrib['onclick'] = sprintf("%s.command('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']); |