Better support for malformed/absent dates and headerlines ending in only "\n".
[squirrelmail.git] / src / webmail.php
index 538dec2da1cbccd7c5c05fc133fac2b1c0346f73..4e383aaf5a2168620d1bc67871d05654f77b4658 100644 (file)
@@ -3,7 +3,7 @@
 /**
  * webmail.php -- Displays the main frameset
  *
- * Copyright (c) 1999-2003 The SquirrelMail development team
+ * Copyright (c) 1999-2004 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
@@ -65,14 +65,15 @@ if ($my_language != $squirrelmail_language) {
 
 $err=set_up_language(getPref($data_dir, $username, 'language'));
 
-echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Frameset//EN\">\n".
-     "<html><head>\n" .
-     "<title>$org_title</title>\n".
-     "</head>";
+$output = "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Frameset//EN\">\n".
+          "<html><head>\n" .
+          "<title>$org_title</title>\n".
+          "</head>";
 
 // Japanese translation used without mbstring support
 if ($err==2) {
-    echo "<body>\n".
+    echo $output.
+         "<body>\n".
         "<p>You need to have php4 installed with the multibyte string function \n".
         "enabled (using configure option --enable-mbstring).</p>\n".
         "<p>System assumed that you accidently switched to Japanese translation \n".
@@ -107,10 +108,10 @@ if ($left_size == "") {
 }
 
 if ($location_of_bar == 'right') {
-    echo "<frameset cols=\"*, $left_size\" id=\"fs1\">\n";
+    $output .= "<frameset cols=\"*, $left_size\" id=\"fs1\">\n";
 }
 else {
-    echo "<frameset cols=\"$left_size, *\" id=\"fs1\">\n";
+    $output .= "<frameset cols=\"$left_size, *\" id=\"fs1\">\n";
 }
 
 /*
@@ -150,12 +151,16 @@ $right_frame = '<frame src="'.$right_frame_url.'" name="right" frameborder="1" t
                _("Message List") ."\" />\n";
 
 if ($location_of_bar == 'right') {
-    echo $right_frame . $left_frame;
+    $output .= $right_frame . $left_frame;
 }
 else {
-    echo $left_frame . $right_frame;
+    $output .= $left_frame . $right_frame;
 }
-do_hook('webmail_bottom');
+$ret = concat_hook_function('webmail_bottom', $output);
+if($ret != '') {
+    $output = $ret;
+}
+echo $output;
 ?>
 </frameset>
 </html>