CLOUDSTACK-3344: unescape value

This commit is contained in:
Ian Duffy 2013-07-18 15:19:47 +05:30 committed by Abhinandan Prateek
parent c85d41d46f
commit cd11fbd3d8
1 changed files with 2 additions and 1 deletions

View File

@ -29,6 +29,7 @@ import org.apache.cloudstack.api.Parameter;
import org.apache.cloudstack.api.ServerApiException;
import org.apache.cloudstack.api.response.LDAPConfigResponse;
import org.apache.cloudstack.api.response.ListResponse;
import org.apache.commons.lang.StringEscapeUtils;
import org.apache.log4j.Logger;
import com.cloud.exception.ConcurrentOperationException;
@ -102,7 +103,7 @@ public class LDAPConfigCmd extends BaseCmd {
}
public void setQueryFilter(String queryFilter) {
this.queryFilter=queryFilter;
this.queryFilter=StringEscapeUtils.unescapeHtml(queryFilter);
}
public String getSearchBase() {
return searchBase;