From 7ebf0e7bf840c2fc27158954e477dd7b59e4f5fe Mon Sep 17 00:00:00 2001 From: Taras Machyshyn Date: Fri, 27 Nov 2020 12:16:01 +0200 Subject: [PATCH] Fix installer for PHP 8 --- install/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/index.php b/install/index.php index 219c02c732..18f08c94c6 100644 --- a/install/index.php +++ b/install/index.php @@ -89,7 +89,7 @@ if (!$systemHelper->initWritable()) { die($message . "\n"); } -require_once ('install/vendor/smarty/libs/Smarty.class.php'); +require_once ('install/vendor/smarty/smarty/libs/Smarty.class.php'); require_once 'core/Installer.php'; require_once 'core/Utils.php';