Three is a charm.
authorgraf25 <graf25@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 6 Apr 2002 21:10:59 +0000 (21:10 +0000)
committergraf25 <graf25@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 6 Apr 2002 21:10:59 +0000 (21:10 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2692 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/display_messages.php

index 29e1c16ecb40a8c44a3ba89a3ffe9e1f57cc8419..024a40f82b84e4fdb4fc58b606a87f8894493dd4 100644 (file)
  * $Id$
  */
 
+/**
+ * Find out where squirrelmail lives and try to be smart about it.
+ * The only problem would be when squirrelmail lives in directories
+ * called "src", "functions", or "plugins", but people who do that need
+ * to be beaten with a steel pipe anyway.
+ *
+ * @return  the base uri of squirrelmail installation.
+ */
 function sqm_baseuri(){
     global $base_uri, $PHP_SELF;
+    /**
+     * If it is in the session, just return it.
+     */
     if (isset($base_uri)){
         return $base_uri;
     }
@@ -115,12 +126,12 @@ function plain_error_message($message, $color) {
 function logout_error( $errString, $errTitle = '' ) {
 
     GLOBAL $frame_top, $org_logo, $org_name, $org_logo_width, $org_logo_height,
-           $hide_sm_attributions, $version;
+           $hide_sm_attributions, $version, $DOCUMENT_ROOT;
     $base_uri = sqm_baseuri();
-    include_once($base_uri . 'functions/page_header.php' );
+    include_once($DOCUMENT_ROOT . $base_uri . 'functions/page_header.php' );
     if ( !isset( $org_logo ) ) {
         // Don't know yet why, but in some accesses $org_logo is not set.
-        include( $base_uri . '../config/config.php' );
+        include( $DOCUMENT_ROOT . $base_uri . 'config/config.php' );
     }
     /* Display width and height like good little people */
     $width_and_height = '';
@@ -174,7 +185,8 @@ function logout_error( $errString, $errTitle = '' ) {
             '<TR><TD><CENTER>' . $errString . '</CENTER></TD></TR>'.
             "<TR><TD BGCOLOR=\"$color[0]\">".
                   "<FONT COLOR=\"$color[2]\"><B><CENTER>".
-                  '<a href="' . $base_uri . '" target="' . $frame_top . '">' .
+                  '<a href="' . $base_uri . 'src/login.php" target="' .
+                  $frame_top . '">' .
                   _("Go to the login page") . "</a></CENTER></B></FONT>".
             '</TD></TR>'.
          '</TABLE></td></tr></table></body></html>';