Opened 13 years ago

Closed 13 years ago

#3793 closed defect (fixed)

missing ; in content-type before charset

Reported by: bartvde Owned by: mapserverbugs
Priority: high Milestone: 6.0 release
Component: WFS Server Version: svn-trunk (development)
Severity: normal Keywords:
Cc:

Description

See:

http://svn.osgeo.org/mapserver/trunk/mapserver/mapwfs.c

  /*
  ** DescribeFeatureType response
  */
  value = msOWSLookupMetadata(&(map->web.metadata), "FO", "encoding");
  
  if (value)
    sIO_printf("Content-type: %s charset=%s%c%c", mimetype,value,10,10);
  else
    msIO_printf("Content-type: %s%c%c",mimetype,10,10);

A ; is missing, it should be:

sIO_printf("Content-type: %s; charset=%s%c%c",

Change History (1)

comment:1 by dmorissette, 13 years ago

Resolution: fixed
Status: newclosed

Fixed in r11447.

Note: See TracTickets for help on using tickets.