From 9f76db63dd8abbe478b3539719475d467e2a5bb6 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Wed, 3 Aug 2022 19:50:23 +0200 Subject: switch to participes --- html/maintenance.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/maintenance.php b/html/maintenance.php index 9982751..45ee354 100644 --- a/html/maintenance.php +++ b/html/maintenance.php @@ -21,7 +21,7 @@ if (array_key_exists('drop',$_GET) && ($_GET['drop']=='DROP')) { $stm = $db -> prepare('INSERT INTO states (name) VALUES (:state)'); if (! $stm) die(); - foreach (array('running', 'ping', 'power') as $state) { + foreach (array('running', 'pingable', 'powered') as $state) { $stm -> bindValue('state', $state); if (! $stm -> execute()) die(); -- cgit v1.2.3-54-g00ecf