From 3f53eed2459f11be2301f37a5324b803047f9cda Mon Sep 17 00:00:00 2001 From: Joseph Tingiris Date: Mon, 27 Jan 2020 21:02:28 -0500 Subject: [PATCH] alert.inc.php: Fix missing ACK & Notes modals (#11076) * BUG: From a device page, click Alerts and attempt to ACK or add a Note. Nothing happens because the modals are not on the page. * This patch corrects pages/device/alert.inc.php to include both modal/alert_notes.inc.php and modal/alert_ack.inc.php --- includes/html/pages/device/alert.inc.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/html/pages/device/alert.inc.php b/includes/html/pages/device/alert.inc.php index 923b572850..f169a3d0d0 100644 --- a/includes/html/pages/device/alert.inc.php +++ b/includes/html/pages/device/alert.inc.php @@ -47,6 +47,8 @@ echo '
'; switch ($vars['section']) { case 'alerts': + include 'includes/html/modal/alert_notes.inc.php'; + include 'includes/html/modal/alert_ack.inc.php'; include 'includes/html/common/alerts.inc.php'; echo implode('', $common_output); break;