phpdoc formating fixes
[squirrelmail.git] / src / webmail.php
index 538dec2da1cbccd7c5c05fc133fac2b1c0346f73..d17cd636daac87969def839fb7c805758db8b46f 100644 (file)
@@ -3,18 +3,21 @@
 /**
  * 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
  * shown can be given as parameters. If the user is not logged in
  * this file will verify username and password.
  *
- * $Id$
+ * @version $Id$
  * @package squirrelmail
  */
 
-/** Path for SquirrelMail required files. */
+/**
+ * Path for SquirrelMail required files.
+ * @ignore
+ */
 define('SM_PATH','../');
 
 /* SquirrelMail required files. */
@@ -65,14 +68,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 +111,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 +154,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;
+}
+$ret = concat_hook_function('webmail_bottom', $output);
+if($ret != '') {
+    $output = $ret;
 }
-do_hook('webmail_bottom');
+echo $output;
 ?>
 </frameset>
 </html>