Bug #16024 » 2080217_user_admin.diff
typo3/sysext/beuser/mod/index.php (working copy) | ||
---|---|---|
$outTable='';
|
||
reset($allGroups);
|
||
$TDparams=' nowrap="nowrap" class="bgColor5" valign="top"';
|
||
$i = 0;
|
||
while(list(,$allCells)=each($allGroups)) {
|
||
$outTable.='<tr><td'.$TDparams.'>'.implode('</td><td'.$TDparams.'>',$allCells).'</td></tr>';
|
||
$TDparams=' nowrap="nowrap" class="bgColor4" valign="top"';
|
||
$TDparams=' nowrap="nowrap" class="'.($i++ % 2 == 0 ? 'bgcolor4' : 'bgcolor6').'" valign="top"';
|
||
}
|
||
$outTable='<table border="0" cellpadding="2" cellspacing="2">'.$outTable.'</table>';
|
||
$outTable.=fw('<br /><br />(All cached group lists updated.)');
|
typo3/sysext/t3skin/stylesheets/typo3-colors.css (working copy) | ||
---|---|---|
.bgColor5 {
|
||
background-color: #D7DBE2;
|
||
}
|
||
background-color: #D7DBE2;
|
||
}
|
||
.bgColor6 {
|
||
background-color: #e0e0e0;
|
||
}
|