From a5e4a8fcd617569c32d9cf23550570fc50c3107f Mon Sep 17 00:00:00 2001 From: kink Date: Tue, 13 May 2008 10:10:14 +0000 Subject: [PATCH] do not add target=_blank for the javascript version git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@13134 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/read_body.php | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/src/read_body.php b/src/read_body.php index 1a1ea119..77643e3a 100644 --- a/src/read_body.php +++ b/src/read_body.php @@ -688,22 +688,25 @@ function formatToolbar($mailbox, $passed_id, $passed_ent_id, $message, $color) { } $url = $base_uri.'src/view_header.php?'.$query_string; - if ( checkForJavaScript() ) { - $pf_params = 'javascript:printThis();'; - } else { - $pf_params = set_url_var($PHP_SELF, 'print', '1'); - } - $links = array(); $links[] = array ( 'URL' => $url, 'Text' => _("View Full Header") ); - $links[] = array ( - 'URL' => $pf_params, + + if ( checkForJavaScript() ) { + $links[] = array ( + 'URL' => 'javascript:printThis();', + 'Text' => _("Print"), + ); + } else { + $links[] = array ( + 'URL' => set_url_var($PHP_SELF, 'print', '1'), 'Text' => _("Print"), 'Target' => '_blank' ); + } + $links[] = array ( 'URL' => $download_href, 'Text' => _("Download this as a file") -- 2.25.1