Skip to content

Commit

Permalink
Merge pull request #86 from EricBode/EricBode-patch-2
Browse files Browse the repository at this point in the history
[FEATURE] Recognize new TCA type 'category'
  • Loading branch information
MattiasNilsson authored Nov 23, 2022
2 parents c80d256 + f094041 commit 5b673a9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Classes/DataHandling/Operation/AbstractRecordOperation.php
Original file line number Diff line number Diff line change
Expand Up @@ -488,6 +488,9 @@ protected function isRelationalField(string $field): bool
|| (
in_array($tca['type'], ['inline', 'select'], true)
&& isset($tca['foreign_table'])
)
|| (
$tca['type'] === 'category'
);
}

Expand Down

0 comments on commit 5b673a9

Please sign in to comment.