summaryrefslogtreecommitdiffstats
path: root/frontends/php/overview.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-11-08 11:05:57 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-11-08 11:05:57 +0000
commit7864ab643b584cfc3a9175c6eb49ac03ad0d18da (patch)
tree178a9b871c9b300b3065fffe263453b0cf0c3efe /frontends/php/overview.php
parent2da52045ec1236a112df3f53960cc95153235d77 (diff)
downloadzabbix-7864ab643b584cfc3a9175c6eb49ac03ad0d18da.tar.gz
zabbix-7864ab643b584cfc3a9175c6eb49ac03ad0d18da.tar.xz
zabbix-7864ab643b584cfc3a9175c6eb49ac03ad0d18da.zip
- [DEV-60] "guest" user can change Hosts location in overview either (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@4985 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/overview.php')
-rw-r--r--frontends/php/overview.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontends/php/overview.php b/frontends/php/overview.php
index ea699341..b31aa981 100644
--- a/frontends/php/overview.php
+++ b/frontends/php/overview.php
@@ -140,7 +140,7 @@ if(isset($_REQUEST["select"])&&($_REQUEST["select"]!=""))
if($_REQUEST["type"]==SHOW_DATA)
{
COpt::profiling_start("get_items_data_overview");
- $table = get_items_data_overview($_REQUEST["groupid"]);
+ $table = get_items_data_overview($_REQUEST["groupid"],$_REQUEST['view_style']);
COpt::profiling_stop("get_items_data_overview");
$table->Show();
unset($table);
@@ -148,7 +148,7 @@ COpt::profiling_stop("get_items_data_overview");
elseif($_REQUEST["type"]==SHOW_TRIGGERS)
{
COpt::profiling_start("get_triggers_overview");
- $table = get_triggers_overview($_REQUEST["groupid"]);
+ $table = get_triggers_overview($_REQUEST["groupid"],$_REQUEST['view_style']);
COpt::profiling_stop("get_triggers_overview");
$table->Show();
unset($table);