summaryrefslogtreecommitdiffstats
path: root/frontends/php/httpconf.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-02-11 14:48:34 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-02-11 14:48:34 +0000
commit8e0de84965c91f571e94fa4e1bd7848310a787b3 (patch)
tree36c838de1bbed7a330901d286873fddcde8c9390 /frontends/php/httpconf.php
parentec99dcce124d70002c5eee4af75a9cf57479b2f1 (diff)
downloadzabbix-8e0de84965c91f571e94fa4e1bd7848310a787b3.tar.gz
zabbix-8e0de84965c91f571e94fa4e1bd7848310a787b3.tar.xz
zabbix-8e0de84965c91f571e94fa4e1bd7848310a787b3.zip
- [DEV-112] added themes option in frontend (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@5341 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/httpconf.php')
-rw-r--r--frontends/php/httpconf.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/frontends/php/httpconf.php b/frontends/php/httpconf.php
index 5b6111d7..b116ba65 100644
--- a/frontends/php/httpconf.php
+++ b/frontends/php/httpconf.php
@@ -357,7 +357,7 @@ include_once "include/page_header.php";
$form->AddItem(array('[',
new CLink($showdisabled ? S_HIDE_DISABLED_SCENARIOS: S_SHOW_DISABLED_SCENARIOS,
- '?showdisabled='.($showdisabled ? 0 : 1),'action'),
+ '?showdisabled='.($showdisabled ? 0 : 1),NULL),
']', SPACE));
$cmbGroup = new CComboBox("groupid",$_REQUEST["groupid"],"submit();");
@@ -475,7 +475,7 @@ include_once "include/page_header.php";
array_push($name, new CLink($httptest_data["name"],"?form=update&httptestid=".
$httptest_data["httptestid"].url_param("hostid").url_param("groupid"),
- 'action'));
+ NULL));
$status=new CCol(new CLink(httptest_status2str($httptest_data["status"]),
"?group_httptestid%5B%5D=".$httptest_data["httptestid"].
@@ -486,8 +486,8 @@ include_once "include/page_header.php";
$chkBox = new CCheckBox("group_httptestid[]",null,null,$httptest_data["httptestid"]);
- $step_cout = DBfetch(DBselect('select count(*) from httpstep where httptestid='.$httptest_data["httptestid"]));
- $step_cout = $step_cout[0];
+ $step_cout = DBfetch(DBselect('select count(*) as cnt from httpstep where httptestid='.$httptest_data["httptestid"]));
+ $step_cout = $step_cout['cnt'];
/* if($httptest_data["templateid"] > 0) $chkBox->SetEnabled(false); // for future use */