Code Cleaning
[squirrelmail.git] / src / webmail.php
index bb4f3d1e1cc698b98875eca48aaf876562ef1b69..596a4ccc1f2211483bbe7737013d6d1201ff1e9d 100644 (file)
@@ -1,17 +1,17 @@
 <?php
 
 /**
- * webmail.php -- Displays the main frameset
- **
- **  Copyright (c) 1999-2001 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
- * shown can be given as parameters. If the user is not logged in
- * this file will verify username and password.
- **
- * $Id$
- **/
+ * webmail.php -- Displays the main frameset
+ *
+ * Copyright (c) 1999-2002 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
+ * shown can be given as parameters. If the user is not logged in
+ * this file will verify username and password.
+ *
+ * $Id$
+ */
 
 require_once('../functions/strings.php');
 require_once('../config/config.php');
@@ -26,9 +26,8 @@ $base_uri = $regs[1];
 
 session_start();
 is_logged_in();
-checkForPrefs($data_dir, $username);
 
-/*
+/**
  * We'll need this to later have a noframes version
  *
  * Check if the user has a language preference, but no cookie.
@@ -42,11 +41,9 @@ if ($my_language != $squirrelmail_language) {
 
 set_up_language(getPref($data_dir, $username, 'language'));
 
-echo "<html><head>\n";
-echo '<TITLE>';
-echo $org_title;
-echo '</TITLE>';
-   
+echo "<html><head>\n" .
+     "<TITLE>$org_title</TITLE>";
+
 $left_size = getPref($data_dir, $username, 'left_size');
 $location_of_bar = getPref($data_dir, $username, 'location_of_bar');
 if ($location_of_bar == '') {
@@ -59,8 +56,8 @@ if ($left_size == "") {
     else {
         $left_size = 200;
     }
-}      
-   
+}
+
 if ($location_of_bar == 'right') {
     echo "<FRAMESET COLS=\"*, $left_size\" BORDER=0>";
 }
@@ -88,17 +85,13 @@ if ($right_frame == 'right_main.php') {
     $urlMailbox = urlencode($mailbox);
     $right_frame_url =
         "right_main.php?mailbox=$urlMailbox&sort=$sort&startMessage=$startMessage";
-}
-elseif ($right_frame == 'options.php') {
+} elseif ($right_frame == 'options.php') {
     $right_frame_url = 'options.php';
-}
-elseif ($right_frame == 'folders.php') {
+} elseif ($right_frame == 'folders.php') {
     $right_frame_url = 'folders.php';
-}
-elseif ($right_frame == 'compose.php') {
+} elseif ($right_frame == 'compose.php') {
     $right_frame_url = "compose.php?send_to=$rcptaddress";
-}
-else {
+} else {
     $right_frame_url = 'right_main.php';
 }