From: pdontthink Date: Fri, 19 Jan 2007 23:21:54 +0000 (+0000) Subject: Simplify and standardize sendMDN function. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=5ab2aff658dafbbaaf47266f430068cc38cee08c;p=squirrelmail.git Simplify and standardize sendMDN function. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@12154 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/templates/default/js/default.js b/templates/default/js/default.js index 86b75719..44c0c0eb 100644 --- a/templates/default/js/default.js +++ b/templates/default/js/default.js @@ -225,7 +225,7 @@ function comp_in_new(comp_uri, iWidth, iHeight) { */ function sendMDN() { mdnuri=window.location+'&sendreceipt=1'; - var newwin = window.open(mdnuri,'right'); + window.location = mdnuri; } var alreadyFocused = false; @@ -264,4 +264,4 @@ function checkForm(smaction) { document.forms[i-1].elements[pos].focus(); } } -} \ No newline at end of file +}