Bug #27100 » 27100.diff
typo3/sysext/beuser/mod/index.php | ||
---|---|---|
foreach ($uGroups as $vv) {
|
||
if ($vv) {
|
||
$uGRow = t3lib_BEfunc::getRecord('be_groups',$vv);
|
||
$pout[]='<tr><td nowrap="nowrap">'.t3lib_iconWorks::getSpriteIconForRecord('be_groups',$uGRow).' '.htmlspecialchars($uGRow['title']).' </td><td width=1% nowrap="nowrap">'.$GLOBALS['SOBE']->elementLinks('be_groups',$uGRow).'</td></tr>';
|
||
$title = t3lib_BEfunc::getRecordTitle('be_groups', $uGRow);
|
||
$pout[] = '<tr><td nowrap="nowrap">' . t3lib_iconWorks::getSpriteIconForRecord('be_groups',$uGRow) .
|
||
' ' . htmlspecialchars($title) . ' </td><td width=1% nowrap="nowrap">' .
|
||
$GLOBALS['SOBE']->elementLinks('be_groups',$uGRow) . '</td></tr>';
|
||
}
|
||
}
|
||
$out[$k] = '<table border="0" cellpadding="0" cellspacing="0" width="100%">'.implode('',$pout).'</table>';
|
typo3/template.php | ||
---|---|---|
global $TCA;
|
||
if (is_array($row) && $row['uid']) {
|
||
$iconImgTag=t3lib_iconWorks::getSpriteIconForRecord($table, $row , array('title' => htmlspecialchars($path)));
|
||
$title= strip_tags($row[$TCA[$table]['ctrl']['label']]);
|
||
$title = strip_tags(t3lib_BEfunc::getRecordTitle($table, $row));
|
||
$viewPage = $noViewPageIcon ? '' : $this->viewPageIcon($row['uid'],$this->backPath,'');
|
||
if ($table=='pages') $path.=' - '.t3lib_BEfunc::titleAttribForPages($row,'',0);
|
||
} else {
|