Commit b76b3030 authored by Robert Butora's avatar Robert Butora
Browse files

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

parent bb05d5c5
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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();
   }