From 0abd65ff5049311319d7165f543031e33e8984cd Mon Sep 17 00:00:00 2001 From: Pim Snel Date: Wed, 15 Jun 2005 22:14:16 +0000 Subject: [PATCH] set correct redirection to login.php when no session is available --- home/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/index.php b/home/index.php index 11949494c0..0891d7e38d 100755 --- a/home/index.php +++ b/home/index.php @@ -20,7 +20,7 @@ $GLOBALS['sessionid'] = @$_GET['sessionid'] ? $_GET['sessionid'] : @$_COOKIE['sessionid']; if (!isset($GLOBALS['sessionid']) || !$GLOBALS['sessionid']) { - Header('Location: login.php'); + Header('Location: ../login.php'); exit; }