Browse Source

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.

philippe_mingo 23 years ago
parent
commit
dd2494dd12
1 changed files with 2 additions and 5 deletions
  1. 2 5
      index.php

+ 2 - 5
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();
 
-?>
+?>