Revision: 12154
http://squirrelmail.svn.sourceforge.net/squirrelmail/?rev=12154&view=rev
Author: pdontthink
Date: 2007-01-19 15:21:54 -0800 (Fri, 19 Jan 2007)
Log Message:
-----------
Simplify and standardize sendMDN function.
Modified Paths:
--------------
trunk/squirrelmail/templates/default/js/default.js
Modified: trunk/squirrelmail/templates/default/js/default.js
===================================================================
--- trunk/squirrelmail/templates/default/js/default.js 2007-01-19 23:21:21 UTC
(rev 12153)
+++ trunk/squirrelmail/templates/default/js/default.js 2007-01-19 23:21:54 UTC
(rev 12154)
@@ -225,7 +225,7 @@
*/
function sendMDN() {
mdnuri=window.location+'&sendreceipt=1';
- var newwin = window.open(mdnuri,'right');
+ window.location = mdnuri;
}
var alreadyFocused = false;
@@ -264,4 +264,4 @@
document.forms[i-1].elements[pos].focus();
}
}
-}
\ No newline at end of file
+}
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
|