12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /**
- * 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$
- */
- /* If a user opens a new session then comes back to this one,
- * $base_uri isn't set because it the session is invalid.
- */
- if (! isset($base_uri)) {
- ereg ('(^.*/)[^/]+/[^/]+$', $PHP_SELF, $regs);
- $base_uri = $regs[1];
- }
- 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;
- }
- }
- ?>
|