Bug #71733
closedFSC SectionViewHelper does not fetch all CEs when column is not set
100%
Description
Reason: the value of the attribute "column" will be casted to int every time and the view helper will query CEs with colPos = 0.
Solution: do not force a "colPos"-condition wihin the query when no column attribute is set.
Updated by Gerrit Code Review almost 9 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/45999
Updated by Gerrit Code Review almost 9 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/45999
Updated by Gerrit Code Review almost 9 years ago
Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/45999
Updated by Gerrit Code Review almost 9 years ago
Patch set 4 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/45999
Updated by Gerrit Code Review almost 9 years ago
Patch set 1 for branch TYPO3_7-6 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/46005
Updated by Georg Ringer almost 9 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset a55685ec788860b7bc4a8307f59ef648ff2794b8.
Updated by Hendrik N almost 9 years ago
This leads to a regression:
$constraints[] = 'colPos IN(' . ($colPosList !== '' ?: '0') . ')';
Evaluates to "colPos IN (1)" if the ViewHelper is called without a "column" paramater.
(PHP 5.6)
Updated by Wouter Wolters almost 9 years ago
This has been fixed already. See https://forge.typo3.org/issues/73521