[fusion-commits] r2815 - trunk/layers/MapGuide/php

svn_fusion at osgeo.org svn_fusion at osgeo.org
Sun Nov 17 18:12:54 PST 2013


Author: jng
Date: 2013-11-17 18:12:54 -0800 (Sun, 17 Nov 2013)
New Revision: 2815

Modified:
   trunk/layers/MapGuide/php/LoadMap.php
Log:
#608: Remove addslashes() call for legend labels in LoadMap.php

Modified: trunk/layers/MapGuide/php/LoadMap.php
===================================================================
--- trunk/layers/MapGuide/php/LoadMap.php	2013-11-15 06:26:26 UTC (rev 2814)
+++ trunk/layers/MapGuide/php/LoadMap.php	2013-11-18 02:12:54 UTC (rev 2815)
@@ -199,7 +199,7 @@
             $mapObj->hasDynamicLayers = true;
         }
 
-        $layerObj->legendLabel = addslashes($layer->GetLegendLabel());
+        $layerObj->legendLabel = $layer->GetLegendLabel();
         $layerObj->displayInLegend = $layer->GetDisplayInLegend();
         $layerObj->expandInLegend = $layer->GetExpandInLegend();
 



More information about the fusion-commits mailing list