Benchmark: hide timestamp on HTML output

Wastes space and is mostly useless, absolut and relative expired time
gives more than enough information.
This commit is contained in:
Thomas Gelf 2014-08-22 09:34:43 +02:00
parent af97db31d7
commit 09412d03b6
1 changed files with 2 additions and 0 deletions

View File

@ -142,6 +142,7 @@ class Benchmark
// TODO: Move formatting to CSS file
$html = '<table class="benchmark">' . "\n" . '<tr>';
foreach ($data->columns as & $col) {
if ($col->title === 'Time') continue;
$html .= sprintf(
'<td align="%s">%s</td>',
$col->align,
@ -153,6 +154,7 @@ class Benchmark
foreach ($data->rows as & $row) {
$html .= '<tr>';
foreach ($data->columns as $key => & $col) {
if ($col->title === 'Time') continue;
$html .= sprintf(
'<td align="%s">%s</td>',
$col->align,