minor #33321 [ErrorRenderer] Fix closing tag in logs table (yceruto)

This PR was merged into the 4.4 branch.

Discussion
----------

[ErrorRenderer] Fix closing tag in logs table

| Q             | A
| ------------- | ---
| Branch?       | 4.4
| Bug fix?      | yes (visual)
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | -
| License       | MIT
| Doc PR        | -

Commits
-------

96a81bd Fix closing tag in logs table
This commit is contained in:
Yonel Ceruto 2019-08-24 19:37:20 -04:00
commit 85a484ce0f

View File

@ -19,7 +19,7 @@
$severity = $log['context']['exception']['severity'] ?? false;
$status = E_DEPRECATED === $severity || E_USER_DEPRECATED === $severity ? 'warning' : 'normal';
} ?>
<tr class="status-<?= $status; ?>" data-filter-level="<?= strtolower($this->escape($log['priorityName'])); ?>"<?php if ($channelIsDefined) { ?> data-filter-channel="<?= $this->escape($log['channel']); ?>"<?php } ?>
<tr class="status-<?= $status; ?>" data-filter-level="<?= strtolower($this->escape($log['priorityName'])); ?>"<?php if ($channelIsDefined) { ?> data-filter-channel="<?= $this->escape($log['channel']); ?>"<?php } ?>>
<td class="text-small" nowrap>
<span class="colored text-bold"><?= $this->escape($log['priorityName']); ?></span>
<span class="text-muted newline"><?= date('H:i:s', $log['timestamp']); ?></span>