Small bug fix
[squirrelmail.git] / src / webmail.php
index c02846cb87666a2a16a983ebe99caddbd5bfd9fe..4e383aaf5a2168620d1bc67871d05654f77b4658 100644 (file)
@@ -3,7 +3,7 @@
 /**
  * webmail.php -- Displays the main frameset
  *
- * Copyright (c) 1999-2002 The SquirrelMail development team
+ * Copyright (c) 1999-2004 The SquirrelMail development team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * This file generates the main frameset. The files that are
  * this file will verify username and password.
  *
  * $Id$
+ * @package squirrelmail
  */
 
-/* Path for SquirrelMail required files. */
+/** Path for SquirrelMail required files. */
 define('SM_PATH','../');
 
 /* SquirrelMail required files. */
@@ -31,19 +32,19 @@ if (!function_exists('sqm_baseuri')){
 }
 $base_uri = sqm_baseuri();
 
-session_start();
+sqsession_is_active();
 
-if (isset($_SESSION['username'])) {
-    $username = $_SESSION['username'];
-}
-if (isset($_SESSION['delimiter'])) {
-    $delimiter = $_SESSION['delimiter'];
-}
-if (isset($_SESSION['onetimepad'])) {
-    $onetimepad = $_SESSION['onetimepad'];
+sqgetGlobalVar('username', $username, SQ_SESSION);
+sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION);
+sqgetGlobalVar('onetimepad', $onetimepad, SQ_SESSION);
+
+sqgetGlobalVar('right_frame', $right_frame, SQ_GET);
+
+if ( isset($_SESSION['session_expired_post']) ) {
+    sqsession_unregister('session_expired_post');
 }
-if (isset($_GET['right_frame'])) {
-    $right_frame = $_GET['right_frame'];
+if(!sqgetGlobalVar('mailto', $mailto)) {
+    $mailto = '';
 }
 
 is_logged_in();
@@ -62,11 +63,25 @@ if ($my_language != $squirrelmail_language) {
     setcookie('squirrelmail_language', $my_language, time()+2592000, $base_uri);
 }
 
-set_up_language(getPref($data_dir, $username, 'language'));
-
-echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">'.
-     "<html><head>\n" .
-     "<title>$org_title</title>";
+$err=set_up_language(getPref($data_dir, $username, 'language'));
+
+$output = "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Frameset//EN\">\n".
+          "<html><head>\n" .
+          "<title>$org_title</title>\n".
+          "</head>";
+
+// Japanese translation used without mbstring support
+if ($err==2) {
+    echo $output.
+         "<body>\n".
+        "<p>You need to have php4 installed with the multibyte string function \n".
+        "enabled (using configure option --enable-mbstring).</p>\n".
+        "<p>System assumed that you accidently switched to Japanese translation \n".
+         "and reverted your language preference to English.</p>\n".
+        "<p>Please refresh this page in order to use webmail.</p>\n".
+        "</body></html>";
+    return;
+}
 
 $left_size = getPref($data_dir, $username, 'left_size');
 $location_of_bar = getPref($data_dir, $username, 'location_of_bar');
@@ -93,10 +108,10 @@ if ($left_size == "") {
 }
 
 if ($location_of_bar == 'right') {
-    echo "<frameset cols=\"*, $left_size\" border=\"0\" id=\"fs1\">";
+    $output .= "<frameset cols=\"*, $left_size\" id=\"fs1\">\n";
 }
 else {
-    echo "<frameset cols=\"$left_size, *\" border=\"0\" id=\"fs1\">";
+    $output .= "<frameset cols=\"$left_size, *\" id=\"fs1\">\n";
 }
 
 /*
@@ -122,21 +137,30 @@ if ($right_frame == 'right_main.php') {
     $right_frame_url = 'options.php';
 } elseif ($right_frame == 'folders.php') {
     $right_frame_url = 'folders.php';
+} elseif ($right_frame == 'compose.php') {
+    $right_frame_url = 'compose.php?' . $mailto;
 } else if ($right_frame == '') {
     $right_frame_url = 'right_main.php';
 } else {
-    $right_frame_url =  urldecode($right_frame);
+    $right_frame_url =  $right_frame;
 }
 
+$left_frame  = '<frame src="left_main.php" name="left" frameborder="1" title="'.
+               _("Folder List") ."\" />\n";
+$right_frame = '<frame src="'.$right_frame_url.'" name="right" frameborder="1" title="'.
+               _("Message List") ."\" />\n";
+
 if ($location_of_bar == 'right') {
-    echo "<FRAME SRC=\"$right_frame_url\" NORESIZE NAME=\"right\">" .
-         '<FRAME SRC="left_main.php" NORESIZE NAME="left">';
+    $output .= $right_frame . $left_frame;
 }
 else {
-    echo '<FRAME SRC="left_main.php" NORESIZE NAME="left">'.
-         "<FRAME SRC=\"$right_frame_url\" NORESIZE NAME=\"right\">";
+    $output .= $left_frame . $right_frame;
+}
+$ret = concat_hook_function('webmail_bottom', $output);
+if($ret != '') {
+    $output = $ret;
 }
-do_hook('webmail_bottom');
+echo $output;
 ?>
-</FRAMESET>
-</HEAD></HTML>
+</frameset>
+</html>