summaryrefslogtreecommitdiffstats
path: root/frontends/php/services.php
diff options
context:
space:
mode:
authorosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-02-10 12:53:34 +0000
committerosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-02-10 12:53:34 +0000
commitf54860dfdd8d24de1dc26a530d95a23343756dc2 (patch)
tree76234c5a861862aee2170b41cf7a517e82633e93 /frontends/php/services.php
parent455a64dfe19d7700fa1fe10edecb1ea82fa5dcce (diff)
downloadzabbix-f54860dfdd8d24de1dc26a530d95a23343756dc2.tar.gz
zabbix-f54860dfdd8d24de1dc26a530d95a23343756dc2.tar.xz
zabbix-f54860dfdd8d24de1dc26a530d95a23343756dc2.zip
- improved Templates logic (Eugene)
- speed improvement for proc.num of Tru64 (Eugene) git-svn-id: svn://svn.zabbix.com/trunk@2631 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/services.php')
-rw-r--r--frontends/php/services.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/frontends/php/services.php b/frontends/php/services.php
index 50976b8f..35168d54 100644
--- a/frontends/php/services.php
+++ b/frontends/php/services.php
@@ -378,7 +378,7 @@
$h2=$h2.form_select("groupid",$row["groupid"],$row["name"]);
}
}
- $h2=$h2."</select>&nbsp;";
+ $h2=$h2."</select>".SPACE;
$h2=$h2."<select class=\"biginput\" name=\"hostid\" onChange=\"submit()\">";
$h2=$h2.form_select("hostid",0,S_SELECT_HOST_DOT_DOT_DOT);
@@ -401,13 +401,13 @@
}
$h2=$h2.form_select("hostid",$row["hostid"],$row["host"]);
}
- $h2=$h2."</select>&nbsp;";
+ $h2=$h2."</select>".SPACE;
echo $h2;
if(isset($_REQUEST["hostid"]))
{
show_table2_v_delimiter($col++);
- echo "&nbsp;";
+ echo SPACE;
show_table2_h_delimiter();
$result=DBselect("select t.triggerid,t.description from triggers t,functions f, hosts h, items i where h.hostid=i.hostid and f.itemid=i.itemid and t.triggerid=f.triggerid and h.hostid=".$_REQUEST["hostid"]." order by t.description");
echo "<select class=\"biginput\" name=\"triggerid\" size=1>";