From 6496a32b045e542286ddfc7ae1d126c2a36c7537 Mon Sep 17 00:00:00 2001 From: voleger Date: Mon, 7 Dec 2020 12:30:04 +0200 Subject: [PATCH] Previously included classloader fails loading of Drupal kernel --- bin/drupal.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/drupal.php b/bin/drupal.php index 6070fc633..171c91fb4 100644 --- a/bin/drupal.php +++ b/bin/drupal.php @@ -33,7 +33,7 @@ } if (isset($autoloader)) { - $autoload = include_once $autoloader; + $autoload = include $autoloader; } else { echo ' You must set up the project dependencies using `composer install`' . PHP_EOL; exit(1);