summaryrefslogtreecommitdiffstats
path: root/frontends/php/triggers.php
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2002-12-07 09:44:28 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2002-12-07 09:44:28 +0000
commit57aba8a89d9da927a39a3ffadf258ead2f27b3c7 (patch)
tree59a8dc852f93f9b9760043a4a2e9388ca4d9249e /frontends/php/triggers.php
parentcfacb3b129f95ee9efc41830d0a939875e7732ed (diff)
downloadzabbix-57aba8a89d9da927a39a3ffadf258ead2f27b3c7.tar.gz
zabbix-57aba8a89d9da927a39a3ffadf258ead2f27b3c7.tar.xz
zabbix-57aba8a89d9da927a39a3ffadf258ead2f27b3c7.zip
- all <? ?> were changed to <?php ?>. No changes in php.ini required anymore.
(Alexei) git-svn-id: svn://svn.zabbix.com/trunk@580 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/triggers.php')
-rw-r--r--frontends/php/triggers.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/frontends/php/triggers.php b/frontends/php/triggers.php
index 68e95517..af25cf41 100644
--- a/frontends/php/triggers.php
+++ b/frontends/php/triggers.php
@@ -1,4 +1,4 @@
-<?
+<?php
$page["title"] = "Configuration of triggers";
$page["file"] = "triggers.php";
@@ -6,7 +6,7 @@
show_header($page["title"],0,0);
?>
-<?
+<?php
if(!check_right("Host","U",0))
{
show_table_header("<font color=\"AA0000\">No permissions !</font
@@ -17,7 +17,7 @@
?>
-<?
+<?php
if(isset($HTTP_GET_VARS["register"]))
{
if($HTTP_GET_VARS["register"]=="add dependency")
@@ -78,13 +78,13 @@
}
?>
-<?
+<?php
show_table_header_begin();
echo "CONFIGURATION OF TRIGGERS";
show_table_v_delimiter();
?>
-<?
+<?php
$result=DBselect("select hostid,host from hosts order by host");
while($row=DBfetch($result))
{
@@ -105,7 +105,7 @@
show_table_header_end();
?>
-<?
+<?php
if(isset($HTTP_GET_VARS["hostid"])&&!isset($HTTP_GET_VARS["triggerid"]))
{
@@ -182,7 +182,7 @@
}
?>
-<?
+<?php
$result=DBselect("select count(*) from hosts");
if(DBget_field($result,0,0)>0)
{
@@ -191,6 +191,6 @@
}
?>
-<?
+<?php
show_footer();
?>