From f71e87652a2bcef78e947ced3412a725c31ea794 Mon Sep 17 00:00:00 2001 From: Ron Kirschler Date: Mon, 3 Aug 2020 09:46:31 +0200 Subject: [PATCH] Update index.php Added `__DIR__` to the bootstrap include. --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index e5e957fe..87912590 100755 --- a/index.php +++ b/index.php @@ -65,4 +65,4 @@ $flextype_loader = require_once $flextype_autoload; * will load up this application so that we can run it and send * the responses back to the browser and delight our users. */ -include 'src/flextype/bootstrap.php'; +include __DIR__.'/src/flextype/bootstrap.php';