* Fixed bug #9779: t3lib_div::trimExplode limit parameter leads to wrong result with non-empty requirement
* Fixed bug #10497: Mark t3lib_div::makeInstanceClassName() as deprecated
+ * Fixed bug #10581: Use $this->fixedL for list title length
2009-03-03 Michael Stucki <michael@typo3.org>
if (!strcmp($code,'')) {
$code = '<i>['.$GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:labels.no_title',1).']</i> - '.htmlspecialchars(t3lib_div::fixed_lgd_cs(t3lib_BEfunc::getRecordTitle($table,$row),$GLOBALS['BE_USER']->uc['titleLen']));
} else {
- $code = htmlspecialchars(t3lib_div::fixed_lgd_cs($code, t3lib_div::intval_positive($GLOBALS['BE_USER']->uc['titleLen']) ? $GLOBALS['BE_USER']->uc['titleLen'] : $this->fixedL));
+ $code = htmlspecialchars(t3lib_div::fixed_lgd_cs($code, $this->fixedL));
if ($code != htmlspecialchars($origCode)) {
$code = '<span title="'.htmlspecialchars($origCode).'">'.$code.'</span>';
}