浏览代码

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 年之前
父节点
当前提交
dd2494dd12
共有 1 个文件被更改,包括 2 次插入5 次删除
  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();
 
-?>
+?>