Bug #23065 ยป 14957-rechis.patch
typo3/class.show_rechis.inc (working copy) | ||
---|---|---|
$lines=array();
|
||
// Initialize:
|
||
$lines[] = '<tr class="bgColor5 c-head">
|
||
$lines[] = '<tr class="t3-row-header">
|
||
<td> </td>
|
||
<td>'.$LANG->getLL('time',1).'</td>
|
||
<td>'.$LANG->getLL('age',1).'</td>
|
||
... | ... | |
$expirationWarning = 1;
|
||
$lines[] = '
|
||
<tr class="bgColor4-20">
|
||
<tr class="c-headLine">
|
||
<td colspan="7"><strong>'.$LANG->getLL('consistenceWarning',1).'</strong></td>
|
||
</tr>';
|
||
}
|
||
... | ... | |
$singleLine[] = '';
|
||
}
|
||
$bgColorClass = $entry['snapshot'] ? 'bgColor2' : 'bgColor4-20';
|
||
// put line together
|
||
$lines[] = '
|
||
<tr class="'.$bgColorClass.'">
|
||
<td>'.implode('</td><td>',$singleLine).'</td>
|
||
<tr class="db_list_normal">
|
||
<td>' . implode('</td><td>', $singleLine) . '</td>
|
||
</tr>';
|
||
}
|
||
... | ... | |
<!--
|
||
History (list):
|
||
-->
|
||
<table border="0" cellpadding="2" cellspacing="2" id="typo3-history">
|
||
'.implode('',$lines).'
|
||
<table class="typo3-dblist" border="0" cellpadding="0" cellspacing="0" id="typo3-history">
|
||
' . implode('', $lines) . '
|
||
</table>';
|
||
if ($this->lastSyslogId) {
|