Actions
Bug #31859
closedclass.tx_recycler_helper.php Missing Argument in 121
Start date:
2011-11-16
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.5
PHP Version:
5.3
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Because of wrong brackets, there occurs an error in line 121 of class.tx_recycler_helper.php:
Wrong:
$output = '/' . htmlspecialchars(t3lib_div::fixed_lgd_cs($row['title']), $titleLimit) . $output;
Correct:
$output = '/' . htmlspecialchars(t3lib_div::fixed_lgd_cs($row['title'], $titleLimit)) . $output;
Updated by Stefan Geith about 13 years ago
Seems, this is already OK in 4.6 and 4.7
Updated by Markus Klein about 13 years ago
Backports were forgotten.
Added them now.
Updated by Dmitry Dulepov about 13 years ago
- Status changed from New to Closed
- Assignee set to Dmitry Dulepov
This is a duplicate report. Please, see the original issue.
All changes were pushed to corresponding branches.
Actions