Skip to content

Commit

Permalink
Added support for the mediatype multipart/related in GetCoverage requ…
Browse files Browse the repository at this point in the history
…ests. Related to issue #4003.
  • Loading branch information
constantinius committed Aug 13, 2012
1 parent 95d959e commit a8f89da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mapwcs20.c
Expand Up @@ -1228,7 +1228,8 @@ int msWCSParseRequest20(cgiRequestObj *request, wcs20ParamsObjPtr params)
}
else if (EQUAL(key, "MEDIATYPE"))
{
if(EQUAL(value, "multipart/mixed"))
if (EQUAL(value, "multipart/mixed")
|| EQUAL(value, "multipart/related"))
{
params->multipart = MS_TRUE;
}
Expand Down

0 comments on commit a8f89da

Please sign in to comment.