File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -242,3 +242,18 @@ $table = new \Joomla\CMS\Table\Content($db);
242242- PR: https://github.com/joomla/joomla-cms/pull/45425
243243- File: libraries/src/Application/WebApplication.php
244244- Description: The ` $item_associations ` was added to the ` WebApplication ` class for improved PHP 8.2 compatibility and is not used at all.
245+
246+ ### getLogContentTypeParams of the ActionlogsHelper got removed
247+
248+ - PR: https://github.com/joomla/joomla-cms/pull/45434
249+ - File: administrator/components/com_actionlogs/src/Helper/ActionlogsHelper.php
250+ - Description: The ` getLogContentTypeParams ` function in the the ` ActionlogsHelper ` class got removed as the one in the model should be used:
251+
252+ ``` php
253+ // Old:
254+ ActionlogsHelper::getLogContentTypeParams('context');
255+
256+ // New:
257+ Factory::getApplication()->bootComponent('actionlogs')->getMVCFactory()
258+ ->createModel('ActionlogConfig', 'Administrator')->getLogContentTypeParams('context');
259+ ```
You can’t perform that action at this time.
0 commit comments