diff --git a/html/includes/print-alerts.php b/html/includes/print-alerts.php
index 645db93cb..baa18f2d8 100644
--- a/html/includes/print-alerts.php
+++ b/html/includes/print-alerts.php
@@ -31,7 +31,7 @@ var grid = $("#alerts").bootgrid({
url: "/ajax_table.php",
formatters: {
"status": function(column,row) {
- return "";
+ return "
";
},
"ack": function(column,row) {
return "";
diff --git a/html/includes/table/alerts.inc.php b/html/includes/table/alerts.inc.php
index f6f2aa6ac..837e30b35 100644
--- a/html/includes/table/alerts.inc.php
+++ b/html/includes/table/alerts.inc.php
@@ -65,22 +65,22 @@ foreach (dbFetchRows($sql,$param) as $alert) {
$ico = "ok";
$col = "green";
$extra = "success";
- $msg = "OK";
+ $msg = "ok";
} elseif ( (int) $alert['state'] === 1 || (int) $alert['state'] === 3 || (int) $alert['state'] === 4) {
$ico = "volume-up";
$col = "red";
$extra = "danger";
- $msg = "ALERT";
+ $msg = "alert";
if ( (int) $alert['state'] === 3) {
- $msg = "WORSE";
+ $msg = "worse";
} elseif ( (int) $alert['state'] === 4) {
- $msg = "BETTER";
+ $msg = "better";
}
} elseif ( (int) $alert['state'] === 2) {
$ico = "volume-off";
$col = "#800080";
$extra = "warning";
- $msg = "MUTED";
+ $msg = "muted";
}
$alert_checked = '';
$orig_ico = $ico;