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/include/views/monitoring.maps.php')
-rw-r--r--frontends/php/include/views/monitoring.maps.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontends/php/include/views/monitoring.maps.php b/frontends/php/include/views/monitoring.maps.php
index 167a06238ff..d6ed80b728f 100644
--- a/frontends/php/include/views/monitoring.maps.php
+++ b/frontends/php/include/views/monitoring.maps.php
@@ -26,7 +26,7 @@ $mapTable->setAttribute('style', 'margin-top: 4px;');
$icon = $fsIcon = null;
if (!empty($this->data['maps'])) {
- $mapComboBox = new CComboBox('sysmapid', get_request('sysmapid', 0), 'submit()');
+ $mapComboBox = new CComboBox('sysmapid', getRequest('sysmapid', 0), 'submit()');
foreach ($this->data['maps'] as $sysmapId => $map) {
$mapComboBox->addItem($sysmapId, $map['name']);
}
@@ -47,7 +47,7 @@ if (!empty($this->data['maps'])) {
// check for permissions
if (isset($this->data['maps'][$parent['sysmapid']])) {
$parentMaps[] = SPACE.SPACE;
- $parentMaps[] = new Clink($parent['name'], 'maps.php?sysmapid='.$parent['sysmapid'].'&fullscreen='.$this->data['fullscreen'].'&severity_min='.$this->data['severity_min']);
+ $parentMaps[] = new CLink($parent['name'], 'maps.php?sysmapid='.$parent['sysmapid'].'&fullscreen='.$this->data['fullscreen'].'&severity_min='.$this->data['severity_min']);
}
}
if (!empty($parentMaps)) {