From 5ddc281f72b53264d9ff14888de87ac3c61a5789 Mon Sep 17 00:00:00 2001 From: Michael RICOIS Date: Fri, 18 Sep 2015 10:06:15 +0000 Subject: [PATCH] Correction composer autoload path --- public/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/index.php b/public/index.php index 70c0f37f..395604e8 100644 --- a/public/index.php +++ b/public/index.php @@ -8,7 +8,7 @@ defined('APPLICATION_ENV') || define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'production')); // --- Composer autoload -require_once realpath(__DIR__ . '/../../vendor/autoload.php'); +require_once realpath(__DIR__ . '/../vendor/autoload.php'); if (APPLICATION_ENV == 'development'){ ini_set("soap.wsdl_cache_enabled", "0");