do NOT list secondary storage VM host in UI

This commit is contained in:
anthony 2011-05-31 12:09:39 -07:00
parent 04e0800f7f
commit 5a052dba74
1 changed files with 1 additions and 1 deletions

View File

@ -1307,7 +1307,7 @@ public class ManagementServerImpl implements ManagementServer {
sc.addAnd("name", SearchCriteria.Op.LIKE, "%" + name + "%");
}
if (type != null) {
sc.addAnd("type", SearchCriteria.Op.LIKE, "%" + type + "%");
sc.addAnd("type", SearchCriteria.Op.LIKE, "%" + type);
}
if (state != null) {
sc.addAnd("status", SearchCriteria.Op.EQ, state);