squirrelmail/functions/auth.php
philippe_mingo f9cbd7d61d Some optimization on frequent loaded code.
Unification of logout error messages.
Strings update.
Spanish strings update.
2002-03-30 09:31:43 +00:00

34 lines
No EOL
725 B
PHP

<?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;
}
}
?>