From 9937be66f30e2ceda23a111bd4a9e8171ba47189 Mon Sep 17 00:00:00 2001 From: Hannes Papenberg Date: Mon, 16 Jun 2025 09:58:57 +0200 Subject: [PATCH] Add removal of com_search methods from Language --- .../54-60/removed-backward-incompatibility.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/migrations/54-60/removed-backward-incompatibility.md b/migrations/54-60/removed-backward-incompatibility.md index cc8da21f..e1c5a44b 100644 --- a/migrations/54-60/removed-backward-incompatibility.md +++ b/migrations/54-60/removed-backward-incompatibility.md @@ -258,3 +258,20 @@ ActionlogsHelper::getLogContentTypeParams('context'); Factory::getApplication()->bootComponent('actionlogs')->getMVCFactory() ->createModel('ActionlogConfig', 'Administrator')->getLogContentTypeParams('context'); ``` + +## Removal of old `com_search`-related methods from Language class +- PR: https://github.com/joomla/joomla-cms/pull/42892 +- File: libraries/src/Language/Language.php +- Description: The `\Joomla\CMS\Language\Language` class contained special methods for the old `com_search` component, which should have been removed in 4.0. These methods are removed without replacement. The following methods have been removed: + - `getIgnoredSearchWords()` + - `getIgnoredSearchWordsCallback()` + - `setIgnoredSearchWordsCallback()` + - `getLowerLimitSearchWord()` + - `getLowerLimitSearchWordCallback()` + - `setLowerLimitSearchWordCallback()` + - `getUpperLimitSearchWord()` + - `getUpperLimitSearchWordCallback()` + - `setUpperLimitSearchWordCallback()` + - `getSearchDisplayedCharactersNumber()` + - `getSearchDisplayedCharactersNumberCallback()` + - `setSearchDisplayedCharactersNumberCallback()`