From 18ed5bd3a2867adf62040cb2f3dcfe7f22e39b7c Mon Sep 17 00:00:00 2001 From: Matt Date: Sun, 19 Apr 2026 18:15:29 -0700 Subject: [PATCH] tiny amount of php proofreading --- files/docker/web/html/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/docker/web/html/index.php b/files/docker/web/html/index.php index fe07203..f3a34f9 100644 --- a/files/docker/web/html/index.php +++ b/files/docker/web/html/index.php @@ -9,7 +9,7 @@ date_default_timezone_set('America/Los_Angeles'); $remove_hosts = []; if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['action'])) { if ($_POST['action'] === 'remove') { - // The Remove form sends a comma-separated string of short_id’s + // The Remove form sends a comma-separated string of short_id's if (!empty($_POST['remove_hosts'])) { $remove_hosts = array_filter( explode(',', $_POST['remove_hosts']), @@ -205,7 +205,7 @@ if ($mode === 'drive_health') { case 'none': $selectedHosts = []; break; - // 'apply' – nothing to do; $selectedHosts already contains the posted hosts + // 'apply' - nothing to do; $selectedHosts already contains the posted hosts } } }