Actions
Bug #14550
closedElement Browser Titles are fixed and not variable
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Backend API
Target version:
-
Start date:
2005-02-12
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
3.7.0
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
File: browse_links.php
Class: TBE_browser_recordList
Method: linkWrapItems():
Line 210: $code = htmlspecialchars(t3lib_div::fixed_lgd_cs($code,$this->fixedL));
Solution:
$code = htmlspecialchars(t3lib_div::fixed_lgd_cs($code,intval($GLOBALS['BE_USER']->uc['titleLen'])));
'$this->fixedL' is inherited from 't3lib_recordList' where it is declared under the comment "Not used in this class - but maybe extension classes...". All other titles in browse_links.php are variable by $GLOBALS['BE_USER']->uc['titleLen'].
(issue imported from #M784)
Actions