[mapserver-commits] r9448 - trunk/mapserver

svn at osgeo.org svn at osgeo.org
Tue Oct 13 11:20:23 EDT 2009


Author: assefa
Date: 2009-10-13 11:20:20 -0400 (Tue, 13 Oct 2009)
New Revision: 9448

Modified:
   trunk/mapserver/mapswf.c
Log:
Correct invalid test when loading movies in an swf ouput (#2524)

Modified: trunk/mapserver/mapswf.c
===================================================================
--- trunk/mapserver/mapswf.c	2009-10-13 14:47:49 UTC (rev 9447)
+++ trunk/mapserver/mapswf.c	2009-10-13 15:20:20 UTC (rev 9448)
@@ -2981,7 +2981,7 @@
     /*do not load all the movie for the layers automatically  if flag is set to off
       Bug 1696*/
     if (strcasecmp(msGetOutputFormatOption(image->format,
-                                           "LOAD_AUTOMATICALLY",""), "OFF") != 0)
+                                           "LOAD_AUTOMATICALLY",""), "OFF") == 0)
       bLoadAutomatically = MS_FALSE;
 
     if (image && MS_DRIVER_SWF(image->format))/* && filename) */



More information about the mapserver-commits mailing list