-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ExtTablesInclusionPostProcessing event listener overwrites TCA generated by other event listeners #1
Comments
luzat
added a commit
to luzat/gridelements
that referenced
this issue
Aug 16, 2022
Work on `$event->getTca()` instead of `$GLOBALS['TCA']`. Back up the previous TCA in case other listeners depend on it.
Bunnyfield
pushed a commit
that referenced
this issue
Apr 28, 2023
Fixed in version 11.0.0 |
echavaillaz
added a commit
to echavaillaz/gridelements
that referenced
this issue
Apr 30, 2023
…() of type int is deprecated
echavaillaz
added a commit
to echavaillaz/gridelements
that referenced
this issue
Apr 30, 2023
…() of type int is deprecated
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The
ExtTablesInclusionPostProcessing
receives aAfterTcaCompilationEvent
, and then writes$GLOBALS['TCA']
back to it.When other event listeners have run before, this overwrites anything they had written to the
$event
.This makes gridelements currently incompatible with melon_images which listens to the same event.
The text was updated successfully, but these errors were encountered: