Work around the fact that /src/style.php depends on a logged in user, thus breaking...
authorjervfors <jervfors@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 31 Jan 2006 15:03:06 +0000 (15:03 +0000)
committerjervfors <jervfors@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 31 Jan 2006 15:03:06 +0000 (15:03 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@10619 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/page_header.php
src/login.php

index ab3ece740c176bf323a8b1f0dde29dc824643bee..e718772b66c255357d5e43265844b6b8323aaeb8 100644 (file)
@@ -31,9 +31,10 @@ include_once(SM_PATH . 'class/template/template.class.php');
  * @param string xtra extra HTML to insert into the header
  * @param bool do_hook whether to execute hooks, default true
  * @param bool frames generate html frameset doctype (since 1.5.1)
+ * @param bool style use style.php CSS, default true (since 1.5.1)
  * @return void
  */
-function displayHtmlHeader( $title = 'SquirrelMail', $xtra = '', $do_hook = true, $frames = false ) {
+function displayHtmlHeader( $title = 'SquirrelMail', $xtra = '', $do_hook = TRUE, $frames = FALSE, $style = TRUE ) {
     global $squirrelmail_language, $sTplDir;
 
     if ( !sqgetGlobalVar('base_uri', $base_uri, SQ_SESSION) ) {
@@ -58,13 +59,19 @@ function displayHtmlHeader( $title = 'SquirrelMail', $xtra = '', $do_hook = true
     $used_theme = basename($chosen_theme,'.php');
 
     /*
-    * Add closing / to link and meta elements only after switching to xhtml 1.0 Transitional.
-    * It is not compatible with html 4.01 Transitional
-    */
-    echo '<link rel="stylesheet" type="text/css" href="'. $base_uri .'src/style.php'
-        .'?fontset='.$chosen_fontset
-        .'&themeid='.$used_theme
-        .(isset($chosen_fontsize) ? '&fontsize='.$chosen_fontsize : '')."\">\n";
+     * The $style parameter is needed since style.php breaks the login otherwise.
+     * This can be removed when style.php doesn't depend on a logged in user.
+     */
+    if ($style) {
+    /*
+     * Add closing / to link and meta elements only after switching to xhtml 1.0 Transitional.
+     * It is not compatible with html 4.01 Transitional
+     */
+       echo '<link rel="stylesheet" type="text/css" href="'. $base_uri .'src/style.php'
+           .'?fontset='.$chosen_fontset
+           .'&themeid='.$used_theme
+           .(isset($chosen_fontsize) ? '&fontsize='.$chosen_fontsize : '')."\">\n";
+    }
 
     // load custom style sheet (deprecated)
     if ( !isset( $theme_css ) || empty($theme_css) ) {
@@ -73,12 +80,12 @@ function displayHtmlHeader( $title = 'SquirrelMail', $xtra = '', $do_hook = true
 
     if ($squirrelmail_language == 'ja_JP') {
         /*
-        * force correct detection of charset, when browser does not follow
-        * http content-type and tries to detect charset from page content.
-        * Shooting of browser's creator can't be implemented in php.
-        * We might get rid of it, if we follow http://www.w3.org/TR/japanese-xml/
-        * recommendations and switch to unicode.
-        */
+         * force correct detection of charset, when browser does not follow
+         * http content-type and tries to detect charset from page content.
+         * Shooting of browser's creator can't be implemented in php.
+         * We might get rid of it, if we follow http://www.w3.org/TR/japanese-xml/
+         * recommendations and switch to unicode.
+         */
         echo "<!-- \xfd\xfe -->\n";
         echo '<meta http-equiv="Content-type" content="text/html; charset=euc-jp">' . "\n";
     }
@@ -275,4 +282,4 @@ function compose_Header($color, $mailbox, $sHeaderJs='', $sBodyTagJs = '') {
     }
     echo "<body text=\"$color[8]\" bgcolor=\"$color[4]\" link=\"$color[7]\" vlink=\"$color[7]\" alink=\"$color[7]\" $sBodyTagJs>\n\n";
 }
-?>
+?>
\ No newline at end of file
index 7a5d0cbb8e0ef1207704da7e32d706a658c55ece..ad93468f333e0a8c3b3330f532eb887a5d1f73df 100644 (file)
@@ -117,7 +117,7 @@ if (! isset($color) || ! is_array($color)) {
     $color[8]  = '#000000';  /* black         Normal text            */
 }
 
-displayHtmlHeader( "$org_name - " . _("Login"), $header, FALSE );
+displayHtmlHeader( "$org_name - " . _("Login"), $header, FALSE, FALSE, FALSE );
 
 echo "<body text=\"$color[8]\" bgcolor=\"$color[4]\" link=\"$color[7]\" vlink=\"$color[7]\" alink=\"$color[7]\" onLoad=\"squirrelmail_loginpage_onload()\">" .
      "\n" . '<form action="redirect.php" method="post" onSubmit="document.forms[0].js_autodetect_results.value=\'' . SMPREF_JS_ON .'\';">' . "\n";
@@ -203,4 +203,4 @@ echo '</form>' . "\n";
 do_hook('login_bottom');
 
 ?>
-</body></html>
+</body></html>
\ No newline at end of file