fixed a bug when no folders exist
[squirrelmail.git] / src / options_submit.php
index 242a7c531797c1208cab7bd7447ac0f3d70ea029..8960281fd261820b1917275445221dc5252cbb8a 100644 (file)
@@ -1,15 +1,22 @@
 <?
-   include("../config/config.php");
-   include("../functions/strings.php");
-   include("../functions/page_header.php");
-   include("../functions/display_messages.php");
-   include("../functions/imap.php");
-   include("../functions/array.php");
+   if (!isset($config_php))
+      include("../config/config.php");
+   if (!isset($strings_php))
+      include("../functions/strings.php");
+   if (!isset($page_header_php))
+      include("../functions/page_header.php");
+   if (!isset($dipslay_messages_php))
+      include("../functions/display_messages.php");
+   if (!isset($imap_php))
+      include("../functions/imap.php");
+   if (!isset($array_php))
+      include("../functions/array.php");
 
    include("../src/load_prefs.php");
 
 
    setPref($data_dir, $username, "full_name", stripslashes($full_name));
+   setPref($data_dir, $username, "email_address", stripslashes($email_address));
    setPref($data_dir, $username, "reply_to", stripslashes($reply_to));
    setPref($data_dir, $username, "chosen_theme", $chosentheme);
    setPref($data_dir, $username, "move_to_trash", $movetotrash);
    setPref($data_dir, $username, "editor_size", $editorsize);
    setPref($data_dir, $username, "use_signature", $usesignature);
    setPref($data_dir, $username, "left_refresh", $leftrefresh);
+   setPref($data_dir, $username, "language", $language);
+   setPref($data_dir, $username, "left_size", $leftsize);
 
    setSig($data_dir, $username, stripslashes($signature_edit));
 
+   setcookie("squirrelmail_language", $language, time()+2592000);
+
    echo "<HTML>";
    echo "<BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
    displayPageHeader($color, "None");
-   echo "<FONT FACE=\"Arial,Helvetica\">";
    echo "<BR><BR><BR><CENTER><B>";
    echo _("Options Saved!");
    echo "</B><BR><BR>";
@@ -32,6 +42,6 @@
    echo _("Click here");
    echo "</A> ";
    echo _("to continue.");
-   echo "</CENTER></FONT>";
+   echo "</CENTER>";
    echo "</BODY></HTML>";
 ?>