summaryrefslogtreecommitdiffstats
path: root/frontends/php/alerts.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/alerts.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/alerts.php')
-rw-r--r--frontends/php/alerts.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/frontends/php/alerts.php b/frontends/php/alerts.php
index e595b43b..1bac4931 100644
--- a/frontends/php/alerts.php
+++ b/frontends/php/alerts.php
@@ -1,18 +1,18 @@
-<?
+<?php
include "include/config.inc.php";
$page["title"] = "Alert history";
$page["file"] = "alerts.php";
show_header($page["title"],30,0);
?>
-<?
+<?php
show_table_header_begin();
echo "ALERT HISTORY";
show_table_v_delimiter();
?>
-<?
+<?php
if(isset($start)&&($start<=0))
{
unset($start);
@@ -38,7 +38,7 @@
<FONT COLOR="#000000">
-<?
+<?php
if(!isset($start))
{
$sql="select a.alertid,a.clock,a.type,a.sendto,a.subject,a.message,ac.triggerid,a.status,a.retries from alerts a,actions ac where a.actionid=ac.actionid order by a.clock desc limit 1000";
@@ -118,6 +118,6 @@
</TR>
</TABLE>
-<?
+<?php
show_footer();
?>