From 9a1e779bc865fddde2adc39dde378f0a0439594a Mon Sep 17 00:00:00 2001 From: hugetoad Date: Mon, 24 Oct 2005 05:20:19 +0000 Subject: - all $_GET and $_POST replaced by $_REQUEST. Thanks to James Wells. (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@2215 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/sysmaps.php | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'frontends/php/sysmaps.php') diff --git a/frontends/php/sysmaps.php b/frontends/php/sysmaps.php index 9361f469..ee455047 100644 --- a/frontends/php/sysmaps.php +++ b/frontends/php/sysmaps.php @@ -37,23 +37,23 @@ ?> @@ -97,9 +97,9 @@ "; - if(isset($_GET["sysmapid"])) + if(isset($_REQUEST["sysmapid"])) { - $result=DBselect("select * from sysmaps where sysmapid=".$_GET["sysmapid"]); + $result=DBselect("select * from sysmaps where sysmapid=".$_REQUEST["sysmapid"]); $row=DBfetch($result); $name=$row["name"]; $width=$row["width"]; @@ -123,9 +123,9 @@ show_table2_v_delimiter($col++); echo "
"; - if(isset($_GET["sysmapid"])) + if(isset($_REQUEST["sysmapid"])) { - echo ""; + echo ""; } echo S_NAME; show_table2_h_delimiter(); @@ -150,7 +150,7 @@ for($i=0;$i".$name; } @@ -209,7 +209,7 @@ show_table2_v_delimiter2(); echo ""; - if(isset($_GET["sysmapid"])) + if(isset($_REQUEST["sysmapid"])) { echo ""; echo ""; -- cgit