From a7d06ad07662bdb33681a5c1a09f38ec629a8e9f Mon Sep 17 00:00:00 2001 From: Jonas L Date: Sun, 17 Oct 2021 08:54:08 +0200 Subject: [PATCH] Fix double path separator in require_once (#1408) --- legacy/public/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/public/index.php b/legacy/public/index.php index b3359010e..44855fccc 100644 --- a/legacy/public/index.php +++ b/legacy/public/index.php @@ -48,7 +48,7 @@ set_include_path(VENDOR_PATH . PATH_SEPARATOR . VENDOR_PATH . 'zf1s/zend-loader/ // Ensure library/ is on include_path set_include_path(LIB_PATH . PATH_SEPARATOR . get_include_path()); -require_once VENDOR_PATH . '/autoload.php'; +require_once VENDOR_PATH . 'autoload.php'; if (!class_exists('Propel')) { exit('Error: Propel not found. Did you install Airtime\'s third-party dependencies with composer? (Check the README.)');