Actions
Bug #85359
closedBE-Pagebrowser broken
Status:
Closed
Priority:
Must have
Assignee:
-
Category:
Backend User Interface
Target version:
Start date:
2018-06-23
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
9
PHP Version:
7.2
Tags:
Complexity:
Is Regression:
Yes
Sprint Focus:
Description
The pagebrowser to browse records shows only the first page.
I tested with pages as well as news-records.
TYPO3 9.3
Files
Actions
#1
Updated by David Bruchmann over 6 years ago
- File recordbrowser-p1.gif recordbrowser-p1.gif added
- File recordbrowser-p2.gif recordbrowser-p2.gif added
Updated by Georg Ringer over 6 years ago
- Status changed from New to Accepted
- Is Regression set to Yes
reason is the change #78129
Updated by Georg Ringer over 6 years ago
- Related to Bug #78129: Statement::rowCount not reliable for SELECT queries added
Updated by Georg Ringer over 6 years ago
reason the change in DatabaseRecordList
line 1109
previously
$dbCount = $queryResult->rowCount();
now
$dbCount = $queryBuilder ->count('uid') ->execute() ->fetchColumn(0)
Updated by Gerrit Code Review over 6 years ago
- Status changed from Accepted 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/57347
Updated by Georg Ringer over 6 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset e504520521595c5cd85687624f537de3e1ad6986.
Updated by bitfire it services over 6 years ago
Had this problem too (clean Typo3 9.3.3) with a custom record type and can confirm that it's fixed with the patch.
Thanks!
Updated by Susanne Moog over 6 years ago
- Has duplicate Bug #85743: An exception occurred if I click on List added
Actions