Well, apparently base_uri gets destroyed with the session.
[squirrelmail.git] / src / webmail.php
index 3f9c11199a59b2ae9166f5b170ebfecfa8f2a146..72f0c0783d789e002632f9c48f4f7b2ae50674ec 100644 (file)
@@ -21,8 +21,7 @@ require_once('../functions/plugin.php');
 require_once('../functions/i18n.php');
 require_once('../functions/auth.php');
 
-ereg( '(^.*/)[^/]+/[^/]+$', $PHP_SELF, $regs);
-$base_uri = $regs[1];
+$base_uri = dirname(dirname($PHP_SELF)) . "/";
 
 session_start();
 is_logged_in();
@@ -41,11 +40,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 == '') {
@@ -58,8 +55,8 @@ if ($left_size == "") {
     else {
         $left_size = 200;
     }
-}      
-   
+}
+
 if ($location_of_bar == 'right') {
     echo "<FRAMESET COLS=\"*, $left_size\" BORDER=0>";
 }
@@ -80,36 +77,32 @@ else {
  * we would like to use as little Javascript as possible.
  */
 if (!isset($right_frame)) {
-    $right_frame = "";
+    $right_frame = '';
 }
 
 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') {
+        "right_main.php?mailbox=$urlMailbox&amp;sort=$sort&amp;startMessage=$startMessage";
+} 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';
 }
 
 if ($location_of_bar == 'right') {
-    echo "<FRAME SRC=\"$right_frame_url\" NORESIZE NAME=\"right\">";
-    echo '<FRAME SRC="left_main.php" NORESIZE NAME="left">';
+    echo "<FRAME SRC=\"$right_frame_url\" NORESIZE NAME=\"right\">" .
+         '<FRAME SRC="left_main.php" NORESIZE NAME="left">';
 }
 else {
-    echo '<FRAME SRC="left_main.php" NORESIZE NAME="left">';
-    echo "<FRAME SRC=\"$right_frame_url\" NORESIZE NAME=\"right\">";
+    echo '<FRAME SRC="left_main.php" NORESIZE NAME="left">'.
+         "<FRAME SRC=\"$right_frame_url\" NORESIZE NAME=\"right\">";
 }
-
+do_hook('webmail_bottom');
 ?>
 </FRAMESET>
 </HEAD></HTML>