Looks like calling strings.php causes a broken result as strings tries to
authorphilippe_mingo <philippe_mingo@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 19 Feb 2002 15:05:03 +0000 (15:05 +0000)
committerphilippe_mingo <philippe_mingo@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 19 Feb 2002 15:05:03 +0000 (15:05 +0000)
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

index 92f94cd419036789e74616071f130aae1960d9a3..36254aa29db4813605487df8e245ccaea4138c69 100644 (file)
--- a/index.php
+++ b/index.php
  * $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