summaryrefslogtreecommitdiffstats
path: root/frontends/php/image.php
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-10-24 05:20:19 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-10-24 05:20:19 +0000
commit9a1e779bc865fddde2adc39dde378f0a0439594a (patch)
tree472789ea587b232cb705de4a9f9783002a169566 /frontends/php/image.php
parentb9e14335fe68cdd6251239883f141a0e0556ac6b (diff)
downloadzabbix-9a1e779bc865fddde2adc39dde378f0a0439594a.tar.gz
zabbix-9a1e779bc865fddde2adc39dde378f0a0439594a.tar.xz
zabbix-9a1e779bc865fddde2adc39dde378f0a0439594a.zip
- 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
Diffstat (limited to 'frontends/php/image.php')
-rw-r--r--frontends/php/image.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/php/image.php b/frontends/php/image.php
index 25a3b73b..16e3076b 100644
--- a/frontends/php/image.php
+++ b/frontends/php/image.php
@@ -31,7 +31,7 @@
check_authorisation();
- $result=DBselect("select image from images where imageid=".$_GET["imageid"]);
+ $result=DBselect("select image from images where imageid=".$_REQUEST["imageid"]);
$row=DBfetch($result);
$image=ImageCreateFromString($row["image"]);