summaryrefslogtreecommitdiffstats
path: root/frontends/php/srv_status.php
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-07-11 12:58:15 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-07-11 12:58:15 +0000
commit89a4b79642e2ddfce1151d9325cde862522c003f (patch)
treef9ae276ad87238240d7bd95983e6a0c46c71feb8 /frontends/php/srv_status.php
parentbfd3e07a5eed7eef2384f42217f49eb25599c740 (diff)
downloadzabbix-89a4b79642e2ddfce1151d9325cde862522c003f.tar.gz
zabbix-89a4b79642e2ddfce1151d9325cde862522c003f.tar.xz
zabbix-89a4b79642e2ddfce1151d9325cde862522c003f.zip
- fixed srv_status.php: Cannot use object of type CLink ... (Alexei)
git-svn-id: svn://svn.zabbix.com/trunk@3024 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/srv_status.php')
-rw-r--r--frontends/php/srv_status.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontends/php/srv_status.php b/frontends/php/srv_status.php
index 61f46001..9d8d74bb 100644
--- a/frontends/php/srv_status.php
+++ b/frontends/php/srv_status.php
@@ -59,7 +59,7 @@
if(isset($_REQUEST["serviceid"]))
{
$service=get_service_by_serviceid($_REQUEST["serviceid"]);
- $service=new CLink($service["name"],"srv_status.php?serviceid=".$service["serviceid"],"action");
+ $srvc=new CLink($service["name"],"srv_status.php?serviceid=".$service["serviceid"],"action");
$status=get_service_status_description($service["status"]);
@@ -95,7 +95,7 @@
}
$actions=new CLink(S_SHOW,"srv_status.php?serviceid=".$service["serviceid"]."&showgraph=1","action");
$table->addRow(array(
- $service,
+ $srvc,
$status,
$reason,
$sla,