summaryrefslogtreecommitdiff
path: root/html/maintenance.php
diff options
context:
space:
mode:
Diffstat (limited to 'html/maintenance.php')
-rw-r--r--html/maintenance.php2
1 files changed, 1 insertions, 1 deletions
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();