From 34a6b7c2cede50f12a9ce43fef49e28ce324d3b6 Mon Sep 17 00:00:00 2001 From: stekkel Date: Wed, 29 May 2002 18:16:14 +0000 Subject: [PATCH] silly typo and a fix for browsers which don't understand target _self (Konquerer 3) git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2904 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/read_body.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/read_body.php b/src/read_body.php index 6f059364..cedc3432 100644 --- a/src/read_body.php +++ b/src/read_body.php @@ -985,7 +985,7 @@ if ($default_use_mdn) { " if (window.confirm(\"" . _("The message sender has requested a response to indicate that you have read this message. Would you like to send a receipt?") . "\")) { \n" . - ' window.open('.$url.',"_self")' . "\n" . + ' window.open('.$url.',"right");' . "\n" . ' }' . "\n" . '// -->' . "\n" . '' . "\n"; @@ -1019,7 +1019,7 @@ if ($default_use_mdn) { if ( SendMDN( $MDN_to, $final_recipient ) > 0 && $supportMDN ) { ToggleMDNflag( true); } - ClearAttachements(); + ClearAttachments(); } $sendreceipt = 'removeMDN'; $url = "\"read_body.php?mailbox=$mailbox&passed_id=$passed_id&startMessage=$startMessage&show_more=$show_more&sendreceipt=$sendreceipt\""; -- 2.25.1