[mapserver-commits] r11768 - branches/branch-6-0/mapserver
svn at osgeo.org
svn at osgeo.org
Mon May 30 09:15:57 EDT 2011
Author: dmorissette
Date: 2011-05-30 06:15:57 -0700 (Mon, 30 May 2011)
New Revision: 11768
Modified:
branches/branch-6-0/mapserver/HISTORY.TXT
branches/branch-6-0/mapserver/mapwms.c
Log:
Fixed order of metadata lookup for WMS GML GetFeatureInfo. 'ows' should come last, not first (#3636)
Modified: branches/branch-6-0/mapserver/HISTORY.TXT
===================================================================
--- branches/branch-6-0/mapserver/HISTORY.TXT 2011-05-30 13:13:23 UTC (rev 11767)
+++ branches/branch-6-0/mapserver/HISTORY.TXT 2011-05-30 13:15:57 UTC (rev 11768)
@@ -15,6 +15,9 @@
Version 6.0.1 (SVN branch-6-0):
---------------------------
+- Fixed order of metadata lookup for WMS GML GetFeatureInfo. 'ows' should
+ come last, not first (#3636).
+
- Fixed mssql2008 to return correct geometries with chart layer type (#3894)
- Write SYMBOLSET/END tags when saving a symbol file (#3885)
Modified: branches/branch-6-0/mapserver/mapwms.c
===================================================================
--- branches/branch-6-0/mapserver/mapwms.c 2011-05-30 13:13:23 UTC (rev 11767)
+++ branches/branch-6-0/mapserver/mapwms.c 2011-05-30 13:15:57 UTC (rev 11768)
@@ -3265,7 +3265,7 @@
else
msIO_printf("Content-type: application/vnd.ogc.gml%c%c",10,10);
- msGMLWriteQuery(map, NULL, "OMG"); /* default is stdout */
+ msGMLWriteQuery(map, NULL, "MGO"); /* default is stdout */
}
else
More information about the mapserver-commits
mailing list