From b5534f7ad074f6851b2a0286c08de1dbc6a1fdf6 Mon Sep 17 00:00:00 2001 From: philippe_mingo Date: Tue, 19 Feb 2002 15:05:03 +0000 Subject: [PATCH] Looks like calling strings.php causes a broken result as strings tries to get other modules that are not reachable from this path through ../ This small fix should fix that problem. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2476 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- index.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/index.php b/index.php index 92f94cd4..36254aa2 100644 --- a/index.php +++ b/index.php @@ -11,10 +11,7 @@ * $Id$ */ -require_once('./functions/strings.php'); - -$location = get_location(); -header("Location: $location/src/login.php\n\n"); +header("Location: src/login.php\n\n"); exit(); -?> +?> \ No newline at end of file -- 2.25.1