r2l by Yoav
[squirrelmail.git] / functions / auth.php
index 5b3f31e5e6b3f32b09fde2c360f3de135fc358bb..3ac8fc897b0919180dd5686217b666c6df30585f 100644 (file)
@@ -1,34 +1,25 @@
 <?php
 
-    /**
-    ** auth.php
-    **
-    **  Copyright (c) 1999-2001 The Squirrelmail Development 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;
-
-        if ( session_is_registered('user_is_logged_in') )
-            return;
-
-        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=\"_top\">"._("Go to the login page")."</a>\n".
-            "</center></body></html>\n";
+/**
+ * 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$
+ */
+
+function is_logged_in() {
+
+    if ( session_is_registered('user_is_logged_in') ) {
+        return;
+    } else {
+        include_once( '../functions/display_messages.php' );
+        logout_error( _("You must be logged in to access this page.") );
         exit;
     }
+}
 
-?>
+?>
\ No newline at end of file