summaryrefslogtreecommitdiffstats
path: root/frontends/php/queue.php
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/php/queue.php')
-rw-r--r--frontends/php/queue.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/frontends/php/queue.php b/frontends/php/queue.php
index 786f3936..1012880f 100644
--- a/frontends/php/queue.php
+++ b/frontends/php/queue.php
@@ -1,4 +1,4 @@
-<?
+<?php
$page["title"] = "Information about monitoring server";
$page["file"] = "queue.php";
@@ -6,7 +6,7 @@
show_header($page["title"],10,0);
?>
-<?
+<?php
if(!check_right("Host","R",0))
{
show_table_header("<font color=\"AA0000\">No permissions !</font>");
@@ -15,10 +15,10 @@
}
?>
-<?
+<?php
show_table_header("QUEUE OF ITEMS TO BE UPDATED");
?>
-<?
+<?php
$now=time();
$result=DBselect("select i.itemid, i.nextcheck, i.description, h.host,h.hostid from items i,hosts h where i.status=0 and h.status=0 and i.hostid=h.hostid and i.nextcheck<$now and i.key_<>'status' order by i.nextcheck");
echo "<table border=0 width=100% bgcolor='#CCCCCC' cellspacing=1 cellpadding=3>";
@@ -41,10 +41,10 @@
}
echo "</table>";
?>
-<?
+<?php
show_table_header("Total:$col");
?>
-<?
+<?php
show_footer();
?>