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
This commit is contained in:
Joseph Tingiris
2020-01-27 21:02:28 -05:00
committed by Kevin Krumm
parent 761d105847
commit 3f53eed245

View File

@@ -47,6 +47,8 @@ echo '<div style="width:99%;margin:0 auto;">';
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;