summaryrefslogtreecommitdiffstats
path: root/frontends/php/sysmap.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/sysmap.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/sysmap.php')
-rw-r--r--frontends/php/sysmap.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/frontends/php/sysmap.php b/frontends/php/sysmap.php
index 4158f3ec..5c1634d2 100644
--- a/frontends/php/sysmap.php
+++ b/frontends/php/sysmap.php
@@ -1,11 +1,11 @@
-<?
+<?php
include "include/config.inc.php";
$page["title"] = "Configuration of network map";
$page["file"] = "sysmap.php";
show_header($page["title"],0,0);
?>
-<?
+<?php
if(!check_right("Network map","U",$HTTP_GET_VARS["sysmapid"]))
{
show_table_header("<font color=\"AA0000\">No permissions !</font>");
@@ -14,12 +14,12 @@
}
?>
-<?
+<?php
show_table_header("CONFIGURATION OF NETWORK MAP");
echo "<br>";
?>
-<?
+<?php
if(isset($HTTP_GET_VARS["register"]))
{
if($HTTP_GET_VARS["register"]=="add")
@@ -52,7 +52,7 @@
}
?>
-<?
+<?php
$result=DBselect("select name from sysmaps where sysmapid=".$HTTP_GET_VARS["sysmapid"]);
$map=DBget_field($result,0,0);
show_table_header($map);
@@ -129,7 +129,7 @@
echo "</TABLE>";
?>
-<?
+<?php
show_table_header("CONNECTORS");
echo "<TABLE BORDER=0 COLS=4 align=center WIDTH=100% BGCOLOR=\"#CCCCCC\" cellspacing=1 cellpadding=3>";
echo "<TD WIDTH=10% NOSAVE><B>Host 1</B></TD>";
@@ -168,7 +168,7 @@
echo "</TABLE>";
?>
-<?
+<?php
echo "<br>";
echo "<a name=\"form\"></a>";
@@ -267,7 +267,7 @@
show_table2_header_end();
?>
-<?
+<?php
echo "<br>";
show_table2_header_begin();
echo "New connector";
@@ -313,6 +313,6 @@
show_table2_header_end();
?>
-<?
+<?php
show_footer();
?>