Skip to content
Snippets Groups Projects
Commit b76b3030 authored by Robert Butora's avatar Robert Butora
Browse files

fixes bug ('&' must be escaped in xml: '&')

parent bb05d5c5
No related branches found
No related tags found
No related merge requests found
......@@ -389,11 +389,11 @@ public class FormatResponseFilter implements Filter
if(coord.band != null)
{
sb.append("&" + coord.band.toString());
//sb.append("&BANDSYS=" + coord.band.system.toString() );
sb.append("&" + coord.band.toString());
//sb.append("&BANDSYS=" + coord.band.system.toString() );
}
sb.append("&ID="); // FIXME id-value will be added in FormatResponseFilter
sb.append("&ID="); // FIXME id-value will be added in FormatResponseFilter
return sb.toString();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment