From 095c9fc313b1f7dbd47adc13d496cd9d36d524dd Mon Sep 17 00:00:00 2001 From: Benjamin Mack Date: Sun, 2 Feb 2014 15:58:46 +0100 Subject: [PATCH] [TASK] Cleanup ext_localconf.php of sysexts As TYPO3 is loading all ext_localconf.php on each call, the existing code can be cleaned up by removing old information, putting BE-only functionality in TYPO3_MODE == 'BE' and install-tool only in Install only mode. Also, some hardcoded require_once statements are removed. Benefits are that FE does not need to load everything all the time. I haven't noticed any side-effects so far, but please test extensively. Resolves: #55593 Releases: 6.2 Change-Id: Ibc37e84cb2af05ddb6b227290330aad31037a018 Reviewed-on: https://review.typo3.org/27286 Reviewed-by: Markus Klein Tested-by: Markus Klein Reviewed-by: Fabien Udriot Tested-by: Fabien Udriot Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters --- ext_localconf.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ext_localconf.php b/ext_localconf.php index d8e9e5f..5a09d50 100644 --- a/ext_localconf.php +++ b/ext_localconf.php @@ -1,6 +1,8 @@