Changed LANG= to LC_ALL=. This should fix a long standing bug. Thanks to
[squirrelmail.git] / functions / page_header.php
1 <?php
2 /**
3 ** page_header.php
4 **
5 ** Prints the page header (duh)
6 **
7 **/
8
9 session_start();
10
11 $page_header_php = true;
12
13 if (!isset($prefs_php))
14 include ("../functions/prefs.php");
15 if (!isset($i18n_php))
16 include ("../functions/i18n.php");
17
18 // Check to see if gettext is installed
19 if (function_exists("_")) {
20 // Setting the language to use for gettext if it is not English
21 // (the default language) or empty.
22 $squirrelmail_language = getPref ($data_dir, $username, "language");
23 if ($squirrelmail_language != "en" && $squirrelmail_language != "") {
24 putenv("LC_ALL=$squirrelmail_language");
25 bindtextdomain("squirrelmail", "../locale/");
26 textdomain("squirrelmail");
27 $default_charset = $languages[$squirrelmail_language]["CHARSET"];
28
29 // Setting cookie to use on the login screen the next time the
30 // same user logs in.
31 #setcookie("squirrelmail_language", $squirrelmail_language,
32 # time()+2592000);
33 $squirrelmail_language = $language;
34 }
35 } else {
36 function _($string) {
37 return $string;
38 }
39 }
40
41 // This is done to ensure that the character set is correct.
42 if ($default_charset != "")
43 header ("Content-Type: text/html; charset=$default_charset");
44
45 function displayPageHeader($color, $mailbox) {
46 /** Here is the header and wrapping table **/
47 $shortBoxName = readShortMailboxName($mailbox, ".");
48 $shortBoxName = stripslashes($shortBoxName);
49 echo "<TABLE BGCOLOR=\"$color[4]\" BORDER=0 COLS=2 WIDTH=100% CELLSPACING=0 CELLPADDING=2>";
50 echo " <TR BGCOLOR=\"$color[9]\" WIDTH=100%>";
51 echo " <TD ALIGN=left WIDTH=30%>";
52 echo " <A HREF=\"signout.php\" TARGET=_top><B>" . _("Sign Out") . "</B></A>";
53 echo " </TD><TD ALIGN=right WIDTH=70%>";
54 echo " <div align=right>" . _("Current Folder: ") . "<B>$shortBoxName&nbsp;</div></B>";
55 echo " </TD>";
56 echo " </TR></TABLE>\n";
57 echo "<TABLE BGCOLOR=\"$color[4]\" BORDER=0 COLS=2 WIDTH=100% CELLSPACING=0 CELLPADDING=2><TR>";
58 echo " <TD ALIGN=left WIDTH=70%>";
59 echo " <A HREF=\"compose.php\">" . _("Compose") . "</A>&nbsp&nbsp";
60 echo " <A HREF=\"addressbook.php\">" . _("Addresses") . "</A>&nbsp&nbsp";
61 echo " <A HREF=\"folders.php\">" . _("Folders") . "</A>&nbsp&nbsp";
62 echo " <A HREF=\"options.php\">" . _("Options") . "</A>&nbsp&nbsp";
63 echo " </TD><TD ALIGN=right WIDTH=30%>";
64 echo " <A HREF=\"http://squirrelmail.sourceforge.net/index.php3?from=1\" TARGET=_top>SquirrelMail</A>";
65 echo " </TD>";
66 echo "</TABLE>";
67 }
68 ?>