Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions updates/64-70/removed-backward-incompatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,20 @@ HTMLHelper::_('templates.thumb', $item);
HTMLHelper::_('templates.thumbModal', $item);
```

## The radiobasic form field is moved to the compatibility plugin
- PR: https://github.com/joomla/joomla-cms/pull/47930
- Files:
- /libraries/src/Form/Field/RadiobasicField.php
- /layouts/joomla/form/field/radiobasic.php
- Description: The form field `radiobasic` is obsolete and the normal radio form field should be used with the layout `joomla.form.field.radio.switcher`.
```xml
// Old:
<field type="radiobasic" />

// New:
<field type="radio" layout="joomla.form.field.radio.switcher"/>
```

## Url layout file is not escaping the url
- PR: https://github.com/joomla/joomla-cms/pull/47929
- File: /layouts/joomla/form/field/url.php
Expand Down