[mapserver-commits] r10499 - branches/branch-5-6/mapserver

svn at osgeo.org svn at osgeo.org
Wed Sep 8 19:35:54 EDT 2010


Author: assefa
Date: 2010-09-08 23:35:53 +0000 (Wed, 08 Sep 2010)
New Revision: 10499

Modified:
   branches/branch-5-6/mapserver/HISTORY.TXT
   branches/branch-5-6/mapserver/mapdraw.c
Log:
Fixed issue with multiple styles and binding (#3538)

Modified: branches/branch-5-6/mapserver/HISTORY.TXT
===================================================================
--- branches/branch-5-6/mapserver/HISTORY.TXT	2010-09-08 23:17:48 UTC (rev 10498)
+++ branches/branch-5-6/mapserver/HISTORY.TXT	2010-09-08 23:35:53 UTC (rev 10499)
@@ -14,6 +14,8 @@
 Current Version
 ---------------
 
+- Fixed issue with multiple styles and binding (#3538)
+
 - Fixed multiple include tags not supported in xml mapfiles (#3530)
 
 - Ensure the class is not marked BeforeFieldInit causing memory corruption with C#/CLR4 (#3438)

Modified: branches/branch-5-6/mapserver/mapdraw.c
===================================================================
--- branches/branch-5-6/mapserver/mapdraw.c	2010-09-08 23:17:48 UTC (rev 10498)
+++ branches/branch-5-6/mapserver/mapdraw.c	2010-09-08 23:35:53 UTC (rev 10499)
@@ -1016,7 +1016,7 @@
                 pStyle->outlinecolor = tmp;
             }
             if (i == 0 || pStyle->outlinewidth > 0) {
-                status = msDrawShape(map, layer, &shape, image, i, MS_TRUE); /* draw a single style */
+                status = msDrawShape(map, layer, &shape, image, i, MS_FALSE); /* draw a single style */
             }
             if (pStyle->outlinewidth > 0) {
                 /*



More information about the mapserver-commits mailing list