[fusion-commits] r2883 - in branches/fusion-mg26: . layers/MapGuide/php
svn_fusion at osgeo.org
svn_fusion at osgeo.org
Sun Jan 11 03:24:49 PST 2015
Author: jng
Date: 2015-01-11 03:24:49 -0800 (Sun, 11 Jan 2015)
New Revision: 2883
Modified:
branches/fusion-mg26/
branches/fusion-mg26/layers/MapGuide/php/Utilities.php
Log:
Merged revision(s) 2882 from trunk:
#629: Fix doubles with value 0.0 being shown as empty strings. Patch by morkl. Reviewed by me.
........
Property changes on: branches/fusion-mg26
___________________________________________________________________
Modified: svn:mergeinfo
- /branches/fusion-mg24:2560
/sandbox/createruntimemap:2699-2708
/sandbox/jxlib-3.0:1957-2248
/sandbox/ol213:2801-2803
/sandbox/robust_error_handling:2818-2825
/trunk:2847,2850,2857,2859,2862-2863,2872,2877,2880
+ /branches/fusion-mg24:2560
/sandbox/createruntimemap:2699-2708
/sandbox/jxlib-3.0:1957-2248
/sandbox/ol213:2801-2803
/sandbox/robust_error_handling:2818-2825
/trunk:2847,2850,2857,2859,2862-2863,2872,2877,2880,2882
Modified: branches/fusion-mg26/layers/MapGuide/php/Utilities.php
===================================================================
--- branches/fusion-mg26/layers/MapGuide/php/Utilities.php 2015-01-11 11:23:08 UTC (rev 2882)
+++ branches/fusion-mg26/layers/MapGuide/php/Utilities.php 2015-01-11 11:24:49 UTC (rev 2883)
@@ -750,7 +750,7 @@
$val = "";
}
- if ( null == $val ) {
+ if ( null === $val ) {
$val = "";
}
return $val;
More information about the fusion-commits
mailing list