From 7a40578cb6d5e33f104974d24f1a13af011eccf2 Mon Sep 17 00:00:00 2001
From: Helmut Hummel <helmut.hummel@typo3.org>
Date: Wed, 1 Jul 2015 20:51:52 +0200
Subject: [PATCH] [BUGFIX] Call base setup in CLI bootstrap

The baseSetup call for the bootstrap was forgotten during the Application/ Bootstrap
refactoring. Add this call to the console application to fix the fatals.

Resolves: #67878
Related: #67808
Releases: master
Change-Id: Ic6a05b3d605a9f7cbde0b23e9d4417ef2d9c35fe
Reviewed-on: http://review.typo3.org/40837
Reviewed-by: Benjamin Mack <benni@typo3.org>
Tested-by: Benjamin Mack <benni@typo3.org>
Reviewed-by: Markus Klein <markus.klein@typo3.org>
Tested-by: Markus Klein <markus.klein@typo3.org>
---
 typo3/sysext/backend/Classes/Console/Application.php | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/typo3/sysext/backend/Classes/Console/Application.php b/typo3/sysext/backend/Classes/Console/Application.php
index a6f4ee837e30..bca462ee6102 100644
--- a/typo3/sysext/backend/Classes/Console/Application.php
+++ b/typo3/sysext/backend/Classes/Console/Application.php
@@ -52,7 +52,8 @@ class Application implements ApplicationInterface {
 		\TYPO3\CMS\Core\Core\CliBootstrap::checkEnvironmentOrDie();
 
 		$this->bootstrap = Bootstrap::getInstance()
-			->initializeClassLoader($classLoader);
+			->initializeClassLoader($classLoader)
+			->baseSetup($this->entryPointPath);
 
 		foreach ($this->availableRequestHandlers as $requestHandler) {
 			$this->bootstrap->registerRequestHandlerImplementation($requestHandler);
-- 
GitLab