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
Actions