From 5d48148153482cc75a431ffa9e50db8ae6aec611 Mon Sep 17 00:00:00 2001 From: Benni Mack <benni@typo3.org> Date: Fri, 22 Nov 2019 18:40:56 +0100 Subject: [PATCH] [BUGFIX] Remove "Extbase & fluid" suffix from indexed search The indexed search plugin is Extbase & Fluid only since TYPO3 v8, and the suffix should be used within the plugin, as this is a technical detail from the past. Resolves: #89749 Releases: master Change-Id: Iaa8d546822da2b444ed81d6c6fc3e497e1e6bb07 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/62387 Tested-by: Susanne Moog <look@susi.dev> Tested-by: Tymoteusz Motylewski <t.motylewski@gmail.com> Tested-by: TYPO3com <noreply@typo3.com> Reviewed-by: Susanne Moog <look@susi.dev> Reviewed-by: Tymoteusz Motylewski <t.motylewski@gmail.com> --- .../Configuration/TCA/Overrides/sys_template.php | 2 +- .../indexed_search/Configuration/TCA/Overrides/tt_content.php | 4 ++-- .../Documentation/Configuration/FluidTemplating/Index.rst | 2 +- typo3/sysext/indexed_search/ext_localconf.php | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/typo3/sysext/indexed_search/Configuration/TCA/Overrides/sys_template.php b/typo3/sysext/indexed_search/Configuration/TCA/Overrides/sys_template.php index 6dbb076f5266..6286552c5053 100644 --- a/typo3/sysext/indexed_search/Configuration/TCA/Overrides/sys_template.php +++ b/typo3/sysext/indexed_search/Configuration/TCA/Overrides/sys_template.php @@ -1,4 +1,4 @@ <?php defined('TYPO3_MODE') or die(); -\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile('indexed_search', 'Configuration/TypoScript', 'Indexed Search (Extbase & Fluid based)'); +\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile('indexed_search', 'Configuration/TypoScript', 'Indexed Search'); diff --git a/typo3/sysext/indexed_search/Configuration/TCA/Overrides/tt_content.php b/typo3/sysext/indexed_search/Configuration/TCA/Overrides/tt_content.php index 2bcd8b621560..b528f80e1f56 100644 --- a/typo3/sysext/indexed_search/Configuration/TCA/Overrides/tt_content.php +++ b/typo3/sysext/indexed_search/Configuration/TCA/Overrides/tt_content.php @@ -1,10 +1,10 @@ <?php defined('TYPO3_MODE') or die(); -// Registers "new" extbase based FE plugin and hide layout, pages and recursive fields in BE +// Registers FE plugin and hide layout, pages and recursive fields in BE \TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin( 'IndexedSearch', 'Pi2', - 'Indexed Search (Extbase & Fluid based)' + 'Indexed Search' ); $GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['indexedsearch_pi2'] = 'layout,pages,recursive'; diff --git a/typo3/sysext/indexed_search/Documentation/Configuration/FluidTemplating/Index.rst b/typo3/sysext/indexed_search/Documentation/Configuration/FluidTemplating/Index.rst index 9862d62701d5..45a47c1f351e 100644 --- a/typo3/sysext/indexed_search/Documentation/Configuration/FluidTemplating/Index.rst +++ b/typo3/sysext/indexed_search/Documentation/Configuration/FluidTemplating/Index.rst @@ -12,7 +12,7 @@ Fluid Templating ^^^^^^^^^^^^^^^^ -The plugin "Indexed Search (Extbase & Fluid based)" can be extended with custom templates: +The plugin "Indexed Search" can be extended with custom templates: .. code-block:: typoscript diff --git a/typo3/sysext/indexed_search/ext_localconf.php b/typo3/sysext/indexed_search/ext_localconf.php index 51ffb6cb5572..dd16033970e0 100644 --- a/typo3/sysext/indexed_search/ext_localconf.php +++ b/typo3/sysext/indexed_search/ext_localconf.php @@ -1,7 +1,7 @@ <?php defined('TYPO3_MODE') or die(); -// register extbase plugin +// register plugin \TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin( 'IndexedSearch', 'Pi2', -- GitLab