Project

General

Profile

Bug #27100 » 27100.diff

Joh. Feustel, 2011-05-27 23:21

View differences:

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).'&nbsp;'.htmlspecialchars($uGRow['title']).'&nbsp;&nbsp;</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) .
'&nbsp;' . htmlspecialchars($title) . '&nbsp;&nbsp;</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 {
(1-1/2)