Added Flag/Unflag buttons. I have been up for 2 days straight. Please check for...
[squirrelmail.git] / src / webmail.php
index 565c5c079e9db88c9f2d8f50755fcbb5ffc4a2c0..42e2b83dc875749767a73f9110e413dafd5d4f82 100644 (file)
@@ -3,7 +3,7 @@
 /**
  * webmail.php -- Displays the main frameset
  *
- * Copyright (c) 1999-2003 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. */
@@ -62,13 +63,25 @@ if ($my_language != $squirrelmail_language) {
     setcookie('squirrelmail_language', $my_language, time()+2592000, $base_uri);
 }
 
-set_up_language(getPref($data_dir, $username, 'language'));
+$err=set_up_language(getPref($data_dir, $username, 'language'));
 
 echo "<!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 "<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');