Skip to content
Snippets Groups Projects
Commit 9316718f authored by Benni Mack's avatar Benni Mack Committed by Benjamin Franzke
Browse files

[TASK] Only load extensions compatible with TYPO3 v8 or later

In order to keep the the extension list in the database small,
the repository data is limited to TYPO3 v8 or later.

Resolves: #88814
Releases: master
Change-Id: I1632e269c748541b7a6b8eca763d2938c29c0509
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/61335


Tested-by: default avatarAndreas Fernandez <a.fernandez@scripting-base.de>
Tested-by: default avatarTYPO3com <noreply@typo3.com>
Tested-by: default avatarBenjamin Franzke <bfr@qbus.de>
Reviewed-by: default avatarAndreas Fernandez <a.fernandez@scripting-base.de>
Reviewed-by: default avatarBjörn Jacob <bjoern.jacob@tritum.de>
Reviewed-by: default avatarBenjamin Franzke <bfr@qbus.de>
parent f00757ac
No related merge requests found
......@@ -176,9 +176,9 @@ class ExtensionListUtility implements \SplObserver
// This effectively reduces the number of extensions imported into this TYPO3 installation
// by more than 70%. As long as the extensions.xml from TER includes these files, we need to "hack" this
// within TYPO3 Core.
// For TYPO3 v10.0, this date could be set to 2017-04-04 (8 LTS release).
// For TYPO3 v11.0, this date could be set to 2018-10-02 (v9 LTS release).
// Also see https://decisions.typo3.org/t/reduce-size-of-extension-manager-db-table/329/
$this->minimumDateToImport = strtotime('2015-11-10T00:00:00+00:00');
$this->minimumDateToImport = strtotime('2017-04-04T00:00:00+00:00');
}
/**
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment