* Fixed intl. of addrbook_search_html.php
[squirrelmail.git] / functions / auth.php
index daacc762332834791c17be2ec0d23f0b59d1ea8d..309a47c944e8ceaec8f6f1dfe6737dec1ad9c064 100644 (file)
@@ -1,29 +1,39 @@
 <?php
 
 /**
- ** auth.php
- **
- ** Contains functions used to do authentication.
- **
- ** $Id$
- **/
-
-   if (defined ('auth_php'))
-      return; 
-   define ('auth_php', true); 
-
-   function is_logged_in () {
-      if (session_is_registered('user_is_logged_in'))
-         return;
-        
-      echo "<html><body bgcolor=\"ffffff\">\n";
-      echo "<br><br>";
-      echo "<center>";
-      echo "<b>"._("You must be logged in to access this page.")."</b><br>";
-      echo "<a href=\"../src/login.php\" target=\"_top\">"._("Go to the login page")."</a>\n";
-      echo "</center>";
-      echo "</body></html>\n";
-      exit;
-   }
+ * auth.php
+ *
+ * Copyright (c) 1999-2002 The SquirrelMail Project Team
+ * Licensed under the GNU GPL. For full terms see the file COPYING.
+ *
+ * Contains functions used to do authentication.
+ *
+ * $Id$
+ */
+
+require_once( '../functions/page_header.php' );
+
+function is_logged_in () {
+    global $squirrelmail_language, $frame_top;
+
+    if ( session_is_registered('user_is_logged_in') ) {
+        return;
+    }
+
+    if (!isset($frame_top)) {
+        $frame_top = '_top';
+    }
+
+    set_up_language($squirrelmail_language, true);
+
+    displayHtmlHeader( 'SquirrelMail', '', FALSE );
+
+    echo "<body bgcolor=\"ffffff\">\n" .
+         '<br><br><center><b>' .
+         _("You must be logged in to access this page.").'</b><br><br>' .
+         "<a href=\"../src/login.php\" target=\"$frame_top\">"._("Go to the login page")."</a>\n" .
+         "</center></body></html>\n";
+    exit;
+}
 
 ?>