Actions
Bug #90232
closedDatabase result is not used to built result array for linkvalidator
Start date:
2020-01-28
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
10
PHP Version:
7.3
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Within () the following code is uses:
while ($row = $statement->fetch()) { $result[$row['link_type']] = $result['amount']; }
This results in an empty list, null assignment.
Instead the following should be used:
while ($row = $statement->fetch()) { $result[$row['link_type']] = $row['amount']; }
Files
Updated by Gerrit Code Review almost 5 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/c/Packages/TYPO3.CMS/+/63060
Updated by Sybille Peters almost 5 years ago
- File linkvalidator.png linkvalidator.png added
This results in number of broken links to be shown as always 0.
The proposed patch fixes this problem!
Updated by Daniel Siepmann almost 5 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset c445ea2c7d1683266c65ad35900798ded9d15d9c.
Actions