2010-11-17 Jeff Segars <jeff@webempoweredchurch.org>
- * Fixed bug #16453: User Admin>List Users Online uses old styling (thanks to Felix Kopp)
+ * Fixed bug #16453: User Admin>List Users Online uses old styling (Thanks to Felix Kopp)
+ * Fixed bug #16452: References table in Info popup uses old styling (Thanks to Felix Kopp)
2010-11-17 Stanislas Rolland <typo3@sjbr.ca>
// Compile information for title tag:
$infoData = array();
if (count($rows)) {
- $infoData[] = '<tr class="bgColor5 tableheader">' .
+ $infoData[] = '<tr class="t3-row-header">' .
'<td>'.$GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xml:show_item.php.table').'</td>' .
'<td>'.$GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xml:show_item.php.uid').'</td>' .
'<td>'.$GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xml:show_item.php.field').'</td>'.
'</tr>';
}
- return count($infoData) ? '<table border="0" cellpadding="1" cellspacing="1">'.implode('',$infoData).'</table>' : '';
+ return count($infoData) ? '<table border="0" cellpadding="0" cellspacing="0" class="typo3-dblist">' . implode('', $infoData) . '</table>' : '';
}
/**
// Compile information for title tag:
$infoData = array();
if (count($rows)) {
- $infoData[] = '<tr class="bgColor5 tableheader">' .
+ $infoData[] = '<tr class="t3-row-header">' .
'<td>'.$GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xml:show_item.php.field').'</td>'.
'<td>'.$GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xml:show_item.php.flexpointer').'</td>'.
'<td>'.$GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xml:show_item.php.softrefKey').'</td>'.
'</tr>';
}
- return count($infoData) ? '<table border="0" cellpadding="1" cellspacing="1">'.implode('',$infoData).'</table>' : '';
+ return count($infoData) ? '<table border="0" cellpadding="0" cellspacing="0" class="typo3-dblist">' . implode('', $infoData) . '</table>' : '';
}
}