mirror of
https://github.com/SkillDisplay/TYPO3ContentElements.git
synced 2024-11-24 03:56:08 +01:00
[BUGFIX] Allow multiple Skill(Set) uids in CE
This commit is contained in:
parent
be3e3b0362
commit
f0572b02af
3 changed files with 3 additions and 3 deletions
|
@ -48,7 +48,7 @@ class SkillSets implements DataProcessorInterface
|
|||
$as = $cObj->stdWrapValue('as', $processorConfiguration, 'skillSets');
|
||||
$skillSetIds = GeneralUtility::intExplode(
|
||||
',',
|
||||
$cObj->stdWrapValue('skillSets', $processorConfiguration),
|
||||
(string)$cObj->stdWrapValue('skillSets', $processorConfiguration),
|
||||
true
|
||||
);
|
||||
$skillSets = [];
|
||||
|
|
|
@ -48,7 +48,7 @@ class Skills implements DataProcessorInterface
|
|||
$as = $cObj->stdWrapValue('as', $processorConfiguration, 'skills');
|
||||
$skillIds = GeneralUtility::intExplode(
|
||||
',',
|
||||
$cObj->stdWrapValue('skills', $processorConfiguration),
|
||||
(string)$cObj->stdWrapValue('skills', $processorConfiguration),
|
||||
true
|
||||
);
|
||||
$skills = [];
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
'description' => $languagePath . 'skilldisplay_skillset.description',
|
||||
'config' => [
|
||||
'type' => 'input',
|
||||
'eval' => 'int,required',
|
||||
'eval' => 'required',
|
||||
'size' => 10,
|
||||
],
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue