Keep the monitor page header inside its PHP block

Its first line closed PHP before the header comment started, so the whole
block rendered as text at the top of the tab.
This commit is contained in:
Gmer4Lfe
2026-08-02 10:37:34 -04:00
parent c34224effa
commit e02dc1be15
+4 -1
View File
@@ -1,4 +1,4 @@
<?php require_once dirname(__DIR__) . '/include/monitor.php'; ?> <?php
// ═══════════════════════════════════════════════════════════════════════════════════════════════ // ═══════════════════════════════════════════════════════════════════════════════════════════════
// PURPOSE // PURPOSE
// Monitor tab. The main dashboard — CPU per core, memory, GPUs, disks and pools, network, // Monitor tab. The main dashboard — CPU per core, memory, GPUs, disks and pools, network,
@@ -45,6 +45,9 @@
// api/media.php now-playing sessions // api/media.php now-playing sessions
// api/docker_action.php container actions // api/docker_action.php container actions
// api/flag_toggle.php toggles // api/flag_toggle.php toggles
// ═══════════════════════════════════════════════════════════════════════════════════════════════
require_once dirname(__DIR__) . '/include/monitor.php';
?>
<style> <style>
@keyframes vvRsPulse { @keyframes vvRsPulse {
0%,100% { opacity:.5; transform:scaleX(.9); } 0%,100% { opacity:.5; transform:scaleX(.9); }