summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/forms.inc.php
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-08-29 11:25:06 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-08-29 11:25:06 +0000
commiteaa70f1fbce932a6963c592916326380abda823c (patch)
tree1f146e5e98ab673baab837eb75d0bc243d1bc400 /frontends/php/include/forms.inc.php
parenta4355fb9ffa28b415af379f5d459e3ccdfe46576 (diff)
Minor changes.
git-svn-id: svn://svn.zabbix.com/trunk@2011 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/forms.inc.php')
-rw-r--r--frontends/php/include/forms.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/php/include/forms.inc.php b/frontends/php/include/forms.inc.php
index 454de271..e1e30728 100644
--- a/frontends/php/include/forms.inc.php
+++ b/frontends/php/include/forms.inc.php
@@ -330,7 +330,7 @@
echo S_HOST;
show_table2_h_delimiter();
echo "<select class=\"biginput\" name=\"hostid\" value=\"3\">";
- $result=DBselect("select hostid,host from hosts order by host");
+ $result=DBselect("select hostid,host from hosts where status not in (".HOST_STATUS_DELETED.")order by host");
for($i=0;$i<DBnum_rows($result);$i++)
{
$hostid_=DBget_field($result,$i,0);