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/chart6.php')
-rw-r--r--frontends/php/chart6.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/frontends/php/chart6.php b/frontends/php/chart6.php
index 6649430d16c..b65a96be427 100644
--- a/frontends/php/chart6.php
+++ b/frontends/php/chart6.php
@@ -64,11 +64,11 @@ else {
* Display
*/
$timeline = CScreenBase::calculateTime(array(
- 'profileIdx' => get_request('profileIdx', 'web.screens'),
- 'profileIdx2' => get_request('profileIdx2'),
- 'updateProfile' => get_request('updateProfile', true),
- 'period' => get_request('period'),
- 'stime' => get_request('stime')
+ 'profileIdx' => getRequest('profileIdx', 'web.screens'),
+ 'profileIdx2' => getRequest('profileIdx2'),
+ 'updateProfile' => getRequest('updateProfile', true),
+ 'period' => getRequest('period'),
+ 'stime' => getRequest('stime')
));
$graph = new CPieGraphDraw($dbGraph['graphtype']);
@@ -79,12 +79,12 @@ if (isset($_REQUEST['border'])) {
$graph->setBorder(0);
}
-$width = get_request('width', 0);
+$width = getRequest('width', 0);
if ($width <= 0) {
$width = $dbGraph['width'];
}
-$height = get_request('height', 0);
+$height = getRequest('height', 0);
if ($height <= 0) {
$height = $dbGraph['height'];
}