Actions
Bug #79921
closedIndexed_Search ignores targetPid
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Indexed Search
Target version:
Start date:
2017-02-20
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
8
PHP Version:
7.0
Tags:
indexed_search, targetPid
Complexity:
Is Regression:
No
Sprint Focus:
Description
Hello,
I use the Introduction Package and the indexed_seach fluid template to include on every FE page a search form.
The fluid template generates the form like this:
<f:form action="search" method="post" id="tx_indexedsearch" noCacheHash="true" pageUid="{settings.targetPid}">
In root-page constants and setup is configured:
plugin.tx_indexedsearch.settings.targetPid = 38
but {settings.targetPid} in fluid keeps empty and the FE search form relates always to same page (form.action = pageUid).
Updated by Gerhard Rupp over 7 years ago
- % Done changed from 0 to 100
Partial "Form.html" has not been updated for this new setting.
<f:form action="search" method="post" id="tx_indexedsearch" noCacheHash="true">
should be
<f:form action="search" pageUid="{settings.targetPid}" method="post" id="tx_indexedsearch" noCacheHash="true">
Updated by Benni Mack over 7 years ago
- Target version changed from 8 LTS to next-patchlevel
Updated by Benni Mack over 5 years ago
- Target version changed from next-patchlevel to Candidate for patchlevel
Updated by Benni Mack over 4 years ago
- Related to Bug #71331: Search results PID added
Updated by Benni Mack over 4 years ago
- Status changed from New to Closed
This has been fixed with this: https://review.typo3.org/c/Packages/TYPO3.CMS/+/44716/
Ensure to keep your locally modified fluid templates up-to-date if you modified them.
I will close this issue for the time being, if you feel there is still something missing, let me know and I will re-open the issue.
Actions