|
From: Wouter T. <te...@us...> - 2002-01-27 23:30:44
|
Update of /cvsroot/squirrelmail/squirrelmail/src
In directory usw-pr-cvs1:/tmp/cvs-serv10698/src
Modified Files:
signout.php options.php
Log Message:
_top frame problem fix
Index: signout.php
===================================================================
RCS file: /cvsroot/squirrelmail/squirrelmail/src/signout.php,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -w -r1.46 -r1.47
--- signout.php 2002/01/25 17:15:57 1.46
+++ signout.php 2002/01/27 23:30:40 1.47
@@ -44,6 +44,10 @@
}
}
+ if (!isset($frame_top)) {
+ $frame_top = '_top';
+ }
+
// If a user hits reload on the last page, $base_uri isn't set
// because it was deleted with the session.
if (! isset($base_uri)) {
Index: options.php
===================================================================
RCS file: /cvsroot/squirrelmail/squirrelmail/src/options.php,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -w -r1.105 -r1.106
--- options.php 2002/01/25 17:15:57 1.105
+++ options.php 2002/01/27 23:30:40 1.106
@@ -228,6 +228,9 @@
/* First, display the results of a submission, if needed. */
/**********************************************************/
if ($optmode == SMOPT_MODE_SUBMIT) {
+ if (isset($frame_top)) {
+ $frame_top = '_top';
+ }
/* Display a message indicating a successful save. */
echo '<B>' . _("Successfully Saved Options") . ": $optpage_name</B><BR>\n";
|