Bug #28835
closedRecycler floods system log - PHP Warning: Missing argument 2 for t3lib_div::fixed_lgd_cs()
100%
Description
Core: Error handler (BE): PHP Warning: Missing argument 2 for t3lib_div::fixed_lgd_cs(), called in ..../typo3_src-4.5.4/typo3/sysext/recycler/classes/helper/class.tx_recycler_helper.php on line 121 and defined in ..../typo3_src-4.5.4/t3lib/class.t3lib_div.php line 641
the closing bracket is not set correct
change
$output = '/' . htmlspecialchars(t3lib_div::fixed_lgd_cs($row['title']), $titleLimit) . $output;
to
$output = '/' . htmlspecialchars(t3lib_div::fixed_lgd_cs($row['title'], $titleLimit)) . $output;
same problem in line 127
from
if ($fullTitleLimit) $fullOutput = '/' . htmlspecialchars(t3lib_div::fixed_lgd_cs($row['title']), $fullTitleLimit) . $fullOutput; <pre> to <pre> if ($fullTitleLimit) $fullOutput = '/' . htmlspecialchars(t3lib_div::fixed_lgd_cs($row['title'], $fullTitleLimit)) . $fullOutput; <pre> Will try to push this to gerrit.
Updated by Mr. Hudson over 13 years ago
Patch set 1 of change Ibb9a6711ab910236a7308f59bc500e2f9045fdf7 has been pushed to the review server.
It is available at http://review.typo3.org/4231
Updated by Anonymous over 13 years ago
- Status changed from Accepted to Resolved
- % Done changed from 0 to 100
Applied in changeset 994b01156761a798d321c45996e074bb8c8d41ee.
Updated by Markus Klein about 13 years ago
Backports:
4.5 https://review.typo3.org/6696
4.4 https://review.typo3.org/6697
Updated by Steffen Gebert about 13 years ago
- Status changed from Resolved to Under Review
Updated by Mr. Hudson about 13 years ago
Patch set 2 of change I3c4f9390e13bebfae861565c482877f5563f9442 has been pushed to the review server.
It is available at http://review.typo3.org/6697
Updated by Dmitry Dulepov about 13 years ago
- Status changed from Under Review to Resolved
- Assignee set to Dmitry Dulepov
I pushed changes to old branches. I believe the issue is resolved now.