Fixed some bugs in folder deleting
[squirrelmail.git] / src / webmail.php
index 54eb524c6a15abba307a8e26b0e3939cc486e51a..8070342c30c93bc15f221f6348d6789c03fcda36 100644 (file)
@@ -7,23 +7,26 @@
     **/
 
    if(!isset($username)) {
-      echo "You need a valid user and password to access this page!";
+      echo _("You need a valid user and password to access this page!");
       exit;
    }
 
    setcookie("username", $username, 0, "/");
    setcookie("key", $key, 0, "/");
    setcookie("logged_in", 1, 0, "/");
+   // Refresh the language cookie.
+   if (isset($squirrelmail_language))
+      setcookie("squirrelmail_language", $squirrelmail_language,
+                time()+2592000);
 ?>
 <HTML><HEAD>
-<TITLE>
 <?
    include ("../config/config.php");
    include ("../functions/prefs.php");
+   echo "<TITLE>";
    echo "$org_title";
-?>
-</TITLE>
-<FRAMESET COLS="200, *" NORESIZE BORDER=0>
+   echo "</TITLE>";
+   echo "<FRAMESET COLS=\"200, *\" NORESIZE BORDER=0>";
 
 /**
     There are three ways to call webmail.php
@@ -37,9 +40,6 @@
     This was done to create a pure HTML way of refreshing the folder list since
     we would like to use as little Javascript as possible.
 **/
-<?
-   checkForPrefs($data_dir, $username);
-
    if ($right_frame == "right_main.php") {
       $urlMailbox = urlencode($mailbox);
       echo "<FRAME SRC=\"left_main.php\" NAME=\"left\">";