From 0dd7f62b54df25001550f82345311009af31fd33 Mon Sep 17 00:00:00 2001 From: Shish Date: Sun, 25 Oct 2020 19:40:24 +0000 Subject: [PATCH] allow use of polyfills in installer --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 8aa4ee43..301cc879 100644 --- a/index.php +++ b/index.php @@ -4,6 +4,7 @@ \* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ require_once "core/sanitize_php.php"; +require_once "core/polyfills.php"; if (!file_exists("vendor/")) { $cwd = getcwd(); @@ -33,7 +34,6 @@ require_once "vendor/autoload.php"; @include_once "data/config/shimmie.conf.php"; @include_once "data/config/extensions.conf.php"; require_once "core/sys_config.php"; -require_once "core/polyfills.php"; require_once "core/util.php"; global $cache, $config, $database, $user, $page, $_tracer;