Skip to content
Snippets Groups Projects
Commit 69b42225 authored by Georg Ringer's avatar Georg Ringer Committed by Benni Mack
Browse files

[BUGFIX] Fix typo in exception of TcaRadioItems

Resolves: #91501
Releases: master, 10.4, 9.5
Change-Id: I7b77a3ee8aceac2cbdb6f3d4e0a02930b66eb863
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/64591


Tested-by: default avatarJosef Glatz <josefglatz@gmail.com>
Tested-by: default avatarTYPO3com <noreply@typo3.com>
Tested-by: default avatarDaniel Haupt <mail@danielhaupt.de>
Tested-by: default avatarBenni Mack <benni@typo3.org>
Reviewed-by: default avatarJosef Glatz <josefglatz@gmail.com>
Reviewed-by: default avatarDaniel Haupt <mail@danielhaupt.de>
Reviewed-by: default avatarBenni Mack <benni@typo3.org>
parent fad1b200
Branches
Tags
No related merge requests found
......@@ -55,7 +55,7 @@ class TcaRadioItems extends AbstractItemProvider implements FormDataProviderInte
foreach ($items as $itemKey => $itemValue) {
if (!is_array($itemValue)) {
throw new \UnexpectedValueException(
'Item ' . $itemKey . ' of field ' . $fieldName . ' of TCA table ' . $result['tableName'] . ' is no array as expected',
'Item ' . $itemKey . ' of field ' . $fieldName . ' of TCA table ' . $result['tableName'] . ' is not an array as expected',
1438607163
);
}
......
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