Pārlūkot izejas kodu

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 gadi atpakaļ
vecāks
revīzija
dd2494dd12
1 mainītis faili ar 2 papildinājumiem un 5 dzēšanām
  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();
 
-?>
+?>