summaryrefslogtreecommitdiffstats
path: root/frontends/php/popup.php
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/php/popup.php')
-rw-r--r--frontends/php/popup.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/frontends/php/popup.php b/frontends/php/popup.php
index 7f946de9..7e1cc2db 100644
--- a/frontends/php/popup.php
+++ b/frontends/php/popup.php
@@ -665,13 +665,15 @@ include_once "include/page_header.php";
if($row['dep_count'] > 0)
{
$description = array(
- $description,BR.BR.
- "<strong>".S_DEPENDS_ON."</strong>".BR);
+ $description,
+ BR(),BR(),
+ bold(S_DEPENDS_ON),
+ BR());
$deps = get_trigger_dependences_by_triggerid($row["triggerid"]);
foreach($deps as $val)
- $description[] = expand_trigger_description($val).BR;
+ $description[] = array(expand_trigger_description($val),BR());
}
if($row["status"] == TRIGGER_STATUS_DISABLED)