From e30500643fbe0c9f9237570b73e59992f776cf0c Mon Sep 17 00:00:00 2001 From: Thomas Bruederli <thomas@roundcube.net> Date: Wed, 14 Nov 2012 04:28:34 -0500 Subject: [PATCH] Enable default behavior of the browser when shift/ctrl-click task links (e.g. open in new window/tab) --- program/include/rcube_output_html.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/program/include/rcube_output_html.php b/program/include/rcube_output_html.php index db947bd..ac07d58 100644 --- a/program/include/rcube_output_html.php +++ b/program/include/rcube_output_html.php @@ -1087,7 +1087,7 @@ // make valid href to specific buttons if (in_array($attrib['command'], rcmail::$main_tasks)) { $attrib['href'] = $this->app->url(array('task' => $attrib['command'])); - $attrib['onclick'] = sprintf("%s.command('switch-task','%s',null,event); return false", rcmail::JS_OBJECT_NAME, $attrib['command']); + $attrib['onclick'] = sprintf("return %s.command('switch-task','%s',this,event)", rcmail::JS_OBJECT_NAME, $attrib['command']); } else if ($attrib['task'] && in_array($attrib['task'], rcmail::$main_tasks)) { $attrib['href'] = $this->app->url(array('action' => $attrib['command'], 'task' => $attrib['task'])); -- Gitblit v1.9.1