Bug #14629 ยป 0000920-class.db_list.inc.diff
typo3/class.db_list.inc 30 Mar 2005 09:44:11 -0000 | ||
---|---|---|
// If the title is blank, make a "no title" label:
|
||
if (!strcmp($code,'')) {
|
||
$code = '<i>['.$GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:labels.no_title',1).']</i> - '.htmlspecialchars(t3lib_BEfunc::getRecordTitle($table,$row));
|
||
$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),$this->fixedL));
|
||
} else {
|
||
$code = htmlspecialchars(t3lib_div::fixed_lgd_cs($code,$this->fixedL));
|
||
}
|