-
Notifications
You must be signed in to change notification settings - Fork 55
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
Record Storage Page is ignored with multiple blog plugins on the same page #292
Record Storage Page is ignored with multiple blog plugins on the same page #292
Comments
@derBoogie Same issue here. Did you find a solution yet? |
My szenario: I tried to analyze the bug with Xdebug. When I put a breakpoint in |
An Extbase repository is a singleton, i.e. only one object of that class exists. Based on v11, it seems to work if you change
|
@peterkraume thanks for your debugging. |
This patch fixes a problem with ignored storagePid if there are multiple blog post plugins on the same page. Only the storagePid setting from the first plugin was evaluated. Fixes TYPO3GmbH#292
I have two blog plugins on one page with different record storage page set.
The second plugin incorrectly shows the blog entries of the first plugin.
In search of the cause, I set a debug output in PostRepository in function getStoragePidsFromTypoScript.
$this->settings['persistence']['storagePid'] provides in both cases incorrectly the record storage page uid of the first plugin on the page.
The record storage page uid of the second plugin is ignored.
The text was updated successfully, but these errors were encountered: