From 27e0f2b6733f71aceec05289b5b119cfd64d3ac1 Mon Sep 17 00:00:00 2001 From: simond Date: Fri, 8 Mar 2002 10:11:33 +0000 Subject: [PATCH] Make sure base_uri is correct (submitted by James Lewis) git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2550 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/auth.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/functions/auth.php b/functions/auth.php index bebc7f87..6ce4e4a6 100644 --- a/functions/auth.php +++ b/functions/auth.php @@ -13,6 +13,15 @@ require_once( '../functions/page_header.php' ); +/* 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 () { global $squirrelmail_language, $frame_top, $base_uri; -- 2.25.1