List Commands plugin by "Thijs Kinkhorst" <thijs@kinkhorst.com>
[squirrelmail.git] / functions / page_header.php
index ef84f2d20d279e4f7a457a0ed22bfdf85f81f24c..2ab967f33ef12f7da09c5042b7dfecbc07f65ff8 100644 (file)
  * $Id$
  */
 
+include_once('../functions/strings.php');
+
 // Always set up the language before calling these functions
 function displayHtmlHeader( $title = 'SquirrelMail', $xtra = '', $do_hook = TRUE ) {
 
-    global $theme_css, $custom_css;
-    
+    global $theme_css, $custom_css, $base_uri;
+
     echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">' .
          "\n\n<HTML>\n<HEAD>\n";
-    
+
     if ( !isset( $custom_css ) || $custom_css == 'none' ) {
         if ($theme_css != '') {
             echo "<LINK REL=\"stylesheet\" TYPE=\"text/css\" HREF=\"$theme_css\">\n";
         }
     } else {
-        echo "<LINK REL=\"stylesheet\" TYPE=\"text/css\" HREF=\"../themes/css/$custom_css\">\n";
+        echo '<LINK REL="stylesheet" TYPE="text/css" HREF="' .
+             $base_uri . "themes/css/$custom_css\">\n";
     }
     
     if( $do_hook ) {
@@ -85,7 +88,7 @@ function checkForm() {
     }
     
 }
--->
+// -->
 </script>
         ';
         $onload = "onLoad=\"checkForm();\"";
@@ -133,4 +136,4 @@ function checkForm() {
         "</TABLE>\n\n";
 }
 
-?>
\ No newline at end of file
+?>