mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-3344: unescape value
This commit is contained in:
parent
c85d41d46f
commit
cd11fbd3d8
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue