* To reduce on errors, I moved the includes for config.php and strings.php
[squirrelmail.git] / functions / page_header.php
index 22a8e0b1eba1892cab595b0b8c59639afa93118f..9dc2a5c2c277c6c1f783088841d4bd91477251f6 100644 (file)
@@ -4,38 +4,26 @@
     **
     **  Prints the page header (duh)
     **
+    **  $Id$
     **/
 
-   session_start();
+   if (defined('page_header_php'))
+       return;
+   define('page_header_php', true);
 
-   $page_header_php = true;
-
-   if (!isset($prefs_php))
-      include ("../functions/prefs.php");
-   if (!isset($i18n_php))
-      include ("../functions/i18n.php");
-   if (!isset($plugin_php))
-      include ("../functions/plugin.php");
+   include('../src/validate.php');
+   include("../functions/prefs.php");
+   include("../functions/plugin.php");
 
    // Check to see if gettext is installed
-   if (function_exists("_")) {
-      // Setting the language to use for gettext if it is not English
-      // (the default language) or empty.
-      $squirrelmail_language = getPref ($data_dir, $username, "language");
-      if ($squirrelmail_language != "en" && $squirrelmail_language != "") {
-         putenv("LC_ALL=$squirrelmail_language");
-         bindtextdomain("squirrelmail", "../locale/");
-         textdomain("squirrelmail");
-         $default_charset = $languages[$squirrelmail_language]["CHARSET"];
-      }
-   } else {
-      function _($string) {
-         return $string;
-      }
-   }
+   $headers_sent=set_up_language(getPref($data_dir, $username, "language"));
 
    // This is done to ensure that the character set is correct.
-   if ($default_charset != "")
+   // But first checks whether we have already sent headers
+   // with charset when we were setting up the user language.
+   // Otherwise user ends up with the default charset overriding
+   // his selected one.
+   if (!$headers_sent && $default_charset != "")
       header ("Content-Type: text/html; charset=$default_charset");
 
    function displayHtmlHeader ($title="SquirrelMail") {
@@ -67,7 +55,7 @@
    }
 
    function displayPageHeader($color, $mailbox) {
-      displayHtmlHeader ($color);
+      displayHtmlHeader ();
 
       printf('<BODY TEXT="%s" BGCOLOR="%s" LINK="%s" VLINK="%s" ALINK="%s">',
              $color[8], $color[4], $color[7], $color[7], $color[7]);
@@ -75,7 +63,6 @@
 
       /** Here is the header and wrapping table **/
       $shortBoxName = readShortMailboxName($mailbox, ".");
-      $shortBoxName = stripslashes($shortBoxName);
       echo "<A NAME=pagetop></A>\n";
       echo "<TABLE BGCOLOR=\"$color[4]\" BORDER=0 WIDTH=\"100%\" CELLSPACING=0 CELLPADDING=2>\n";
       echo "   <TR BGCOLOR=\"$color[9]\">\n";
       do_hook("menuline");
 
       echo "      </TD><TD ALIGN=right nowrap WIDTH=\"1%\">\n";
-      echo "         <A HREF=\"http://www.squirrelmail.org/index.php3?from=1\" TARGET=\"_top\">SquirrelMail</A>\n";
+      echo "         <A HREF=\"http://www.squirrelmail.org/\" TARGET=\"_blank\">SquirrelMail</A>\n";
       echo "      </TD>\n";
       echo "   </TR>\n";
       echo "</TABLE>\n\n";