From 0156cd6ab92216292213e13b901b081c5cee29d1 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sat, 18 Jul 2015 20:09:54 +0200 Subject: index.php: Include correct file If $PWD is not the root of the working copy this would try to include $PWD/public_html/index.php. Signed-off-by: Florian Pritz --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index c0e02d611..43c87ba95 100644 --- a/index.php +++ b/index.php @@ -7,4 +7,4 @@ * */ -include 'public_html/index.php'; +include dirname(__FILE__).'/public_html/index.php'; -- cgit v1.2.3-24-g4f1b