Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/php/image.php')
-rw-r--r--frontends/php/image.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontends/php/image.php b/frontends/php/image.php
index ef5c22a69f4..3bd94026b66 100644
--- a/frontends/php/image.php
+++ b/frontends/php/image.php
@@ -39,8 +39,8 @@ check_fields($fields);
$resize = false;
if (isset($_REQUEST['width']) || isset($_REQUEST['height'])) {
$resize = true;
- $width = get_request('width', 0);
- $height = get_request('height', 0);
+ $width = getRequest('width', 0);
+ $height = getRequest('height', 0);
}
if (!($row = get_image_by_imageid($_REQUEST['imageid']))) {
error(_('Incorrect image index.'));