Fixed plural in footer
This commit is contained in:
parent
b185b098d0
commit
794d0497c8
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ $this->assets->addScript('core.js');
|
|||
<div class="right">
|
||||
<span><?= TextHelper::useBytesUnits(memory_get_usage()) ?></span>
|
||||
<span><?= sprintf('%.04f', microtime(true) - $this->context->startTime) ?>s</span>
|
||||
<span><?= count(\Chibi\Database::getLogs()) ?> queries</span>
|
||||
<span><?= $x = count(\Chibi\Database::getLogs()) ?> <?= $x != 1 ? 'queries' : 'query' ?></span>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
<hr/>
|
||||
|
|
Loading…
Reference in a new issue