From 2b3f02a5c8c06ab1a6c6a7ee43c98cb0ef1bd4aa Mon Sep 17 00:00:00 2001 From: Fabian Schindler Date: Fri, 22 Feb 2013 14:47:45 +0100 Subject: [PATCH] Fixing bug that prevents WCS 2.0 Post XML to contain the wcs:Extension element. --- mapwcs20.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mapwcs20.c b/mapwcs20.c index faa2c9c2f0..e22e832daf 100644 --- a/mapwcs20.c +++ b/mapwcs20.c @@ -844,6 +844,8 @@ static int msWCSParseRequest20_XMLGetCoverage( CSLAddString(params->range_subset, content); xmlFree(content); } + } else if (EQUAL((char *)child->name, "Extension")) { + continue; } else { XML_UNKNOWN_NODE_ERROR(child); }