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

svn_fusion at osgeo.org svn_fusion at osgeo.org
Sun Jan 11 03:23:08 PST 2015


Author: jng
Date: 2015-01-11 03:23:08 -0800 (Sun, 11 Jan 2015)
New Revision: 2882

Modified:
   trunk/layers/MapGuide/php/Utilities.php
Log:
#629: Fix doubles with value 0.0 being shown as empty strings. Patch by morkl. Reviewed by me.

Modified: trunk/layers/MapGuide/php/Utilities.php
===================================================================
--- trunk/layers/MapGuide/php/Utilities.php	2014-09-27 07:07:46 UTC (rev 2881)
+++ trunk/layers/MapGuide/php/Utilities.php	2015-01-11 11:23:08 UTC (rev 2882)
@@ -750,7 +750,7 @@
         $val = "";
     }
 
-    if ( null == $val ) {
+    if ( null === $val ) {
       $val = "";
     }
     return $val;



More information about the fusion-commits mailing list