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
}
}
}