this is a fix for the LSUB with a % when getting the folder list. This makes the...
[squirrelmail.git] / functions / auth.php
index 594567fd577a5147e49bb67ee7e00e4d66accd74..3ac8fc897b0919180dd5686217b666c6df30585f 100644 (file)
@@ -1,22 +1,25 @@
 <?php
 
 /**
- ** auth.php
- **
- ** Contains functions used to do authentication.
- **
- **/
+ * 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$
+ */
 
-   $auth_php = true;
+function is_logged_in() {
 
-   function is_logged_in () {
-      if (!session_is_registered("user_is_logged_in")) {
-         echo _("You must login first.");
-         echo "</body></html>\n\n";
-         exit;
-      } else {
-         return true;
-      }
-   }
+    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