fixed a couple of bugs in folder manipulation, in particular:
[squirrelmail.git] / src / load_prefs.php
index 9f4ed1abea2ee2954350b0b6d269d13612a48777..69c74dec21fe1371999d6b6f6172d2c2c852a4f8 100644 (file)
@@ -13,9 +13,9 @@
          require($theme[0]["PATH"]);
       } else {
          echo _("Theme: ");
-        echo . $theme[0]["PATH"];
-        echo _(" was not found.");
-        echo "<BR>";
+         echo $theme[0]["PATH"];
+         echo _(" was not found.");
+         echo "<BR>";
          echo _("Exiting abnormally");
          exit;
       }
    if ($use_signature == "")
       $use_signature = false;
 
+   $left_refresh = getPref($data_dir, $username, "left_refresh");
+   if ($left_refresh == "")
+      $left_refresh = false;
+   
    /** Load up the Signature file **/
    if ($use_signature == true) {
       $signature = getSig($data_dir, $username);
    } else {
-      $signature = "";
    }
 ?>