소스 검색

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