Only show text/plain if show_html_default=0
[squirrelmail.git] / src / webmail.php
index 34008cff68fbce9bc68ccd84dd25bd2e7ebac2e6..1f1362da1bed1515a528215e0b4083d3bfb3034b 100644 (file)
@@ -49,7 +49,8 @@ echo "<html><head>\n" .
 $left_size = getPref($data_dir, $username, 'left_size');
 $location_of_bar = getPref($data_dir, $username, 'location_of_bar');
 
-if (strtolower($languages[$squirrelmail_language]['DIR']) == 'rtl') {
+if (isset($languages[$squirrelmail_language]['DIR']) &&
+    strtolower($languages[$squirrelmail_language]['DIR']) == 'rtl') {
     $temp_location_of_bar = 'right';
 } else {
     $temp_location_of_bar = 'left';
@@ -90,8 +91,7 @@ else {
  */
 if (!isset($right_frame)) {
     $right_frame = '';
-}
-
+} 
 if ($right_frame == 'right_main.php') {
     $urlMailbox = urlencode($mailbox);
     $right_frame_url =
@@ -100,10 +100,10 @@ if ($right_frame == 'right_main.php') {
     $right_frame_url = 'options.php';
 } elseif ($right_frame == 'folders.php') {
     $right_frame_url = 'folders.php';
-} elseif ($right_frame == 'compose.php') {
-    $right_frame_url = "compose.php?send_to=$rcptaddress";
-} else {
+} else if ($right_frame == '') {
     $right_frame_url = 'right_main.php';
+} else {
+    $right_frame_url =  urldecode($right_frame);
 }
 
 if ($location_of_bar == 'right') {