From c2581108df3de8593e566c0979a3dcfb521462d9 Mon Sep 17 00:00:00 2001 From: Bruno Skvorc Date: Sun, 17 Apr 2016 09:32:13 +0200 Subject: [PATCH] Bugfix - wrong ROOT constant value --- public/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/index.php b/public/index.php index 212bd93..169114c 100644 --- a/public/index.php +++ b/public/index.php @@ -14,7 +14,7 @@ * @see http://www.sitepoint.com/control-user-access-to-classes-and-methods-with-rauth/ */ -define('ROOT', realpath(__DIR__)); +define('ROOT', realpath(__DIR__.'/..')); session_start(); require __DIR__ . '/../vendor/autoload.php';