We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99de64b commit 2f833d6Copy full SHA for 2f833d6
1 file changed
template/status.phtml
@@ -6,7 +6,11 @@
6
<?php foreach ($status->getStatusInfo() as $key => $statusItem) { ?>
7
<tr>
8
<td><?= $this->translator->translate('status.' . $key); ?></td>
9
- <td><span class="<?= $statusItem ? 'g' : 'r'; ?>s"></span></td>
+ <?php if ($key === 'opcache_enabled') { ?>
10
+ <td><span class="<?= $statusItem ? 'g' : 'r'; ?>s"></span></td>
11
+ <?php } else { ?>
12
+ <td><span class="<?= $statusItem ? 'r' : 'g'; ?>s"></span></td>
13
+ <?php } ?>
14
</tr>
15
<?php } ?>
16
</table>
0 commit comments