|
From: Wouter T. <te...@us...> - 2002-02-16 00:03:54
|
Update of /cvsroot/squirrelmail/squirrelmail/src
In directory usw-pr-cvs1:/tmp/cvs-serv14738/src
Modified Files:
webmail.php redirect.php
Log Message:
Seth Randall, take 2
Index: webmail.php
===================================================================
RCS file: /cvsroot/squirrelmail/squirrelmail/src/webmail.php,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -w -r1.64 -r1.65
--- webmail.php 15 Feb 2002 10:46:35 -0000 1.64
+++ webmail.php 16 Feb 2002 00:03:50 -0000 1.65
@@ -90,7 +90,6 @@
} elseif ($right_frame == 'folders.php') {
$right_frame_url = 'folders.php';
} elseif ($right_frame == 'compose.php') {
- $rcptaddress = urldecode($rcptaddress);
$right_frame_url = "compose.php?send_to=$rcptaddress";
} else {
$right_frame_url = 'right_main.php';
Index: redirect.php
===================================================================
RCS file: /cvsroot/squirrelmail/squirrelmail/src/redirect.php,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -w -r1.44 -r1.45
--- redirect.php 18 Jan 2002 09:14:21 -0000 1.44
+++ redirect.php 16 Feb 2002 00:03:50 -0000 1.45
@@ -149,7 +149,7 @@
/* Compute the URL to forward the user to. */
if(isset($rcptemail)) {
$redirect_url = 'webmail.php?right_frame=compose.php&rcptaddress=';
- $redirect_url .= urlencode($rcptemail);
+ $redirect_url .= $rcptemail;
} else {
$redirect_url = 'webmail.php';
}
|