[TYPO3-core] for 4.2.3: titles length in list module

stefano cecere scecere at krur.com
Tue Oct 7 13:06:25 CEST 2008


the records titles length in list module is still fixed to 30 chars, it should respect the user preference.

change line 566 of /typo3/class.db_list.inc

FROM
$code = htmlspecialchars(t3lib_div::fixed_lgd_cs($code,$this->fixedL));
TO
$code = htmlspecialchars(t3lib_div::fixed_lgd_cs($code, $GLOBALS['BE_USER']->uc['titleLen']));


it is a one line fix that has already been tested here:
http://bugs.typo3.org/view.php?id=8787

what do you think?
stefano


More information about the TYPO3-team-core mailing list