summaryrefslogtreecommitdiffstats
path: root/frontends/php/maps.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/maps.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/maps.php')
-rw-r--r--frontends/php/maps.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/frontends/php/maps.php b/frontends/php/maps.php
index 31e0cb2b..ae1212f6 100644
--- a/frontends/php/maps.php
+++ b/frontends/php/maps.php
@@ -1,4 +1,4 @@
-<?
+<?php
include "include/config.inc.php";
$page["title"] = "Network maps";
$page["file"] = "maps.php";
@@ -18,7 +18,7 @@
}
?>
-<?
+<?php
if(isset($HTTP_GET_VARS["sysmapid"])&&!check_right("Network map","R",$HTTP_GET_VARS["sysmapid"]))
{
show_table_header("<font color=\"AA0000\">No permissions !</font>");
@@ -27,7 +27,7 @@
}
?>
-<?
+<?php
if(!isset($HTTP_GET_VARS["fullscreen"]))
{
show_table_header_begin();
@@ -66,7 +66,7 @@
}
?>
-<?
+<?php
if(isset($HTTP_GET_VARS["sysmapid"]))
{
$result=DBselect("select name from sysmaps where sysmapid=".$HTTP_GET_VARS["sysmapid"]);
@@ -124,6 +124,6 @@
echo "</TABLE>";
?>
-<?
+<?php
show_footer();
?>