[fusion-commits] r2063 - sandbox/adsk/2.2gp/layers/MapGuide/php
svn_fusion at osgeo.org
svn_fusion at osgeo.org
Mon Feb 8 21:33:10 EST 2010
Author: liuar
Date: 2010-02-08 21:33:10 -0500 (Mon, 08 Feb 2010)
New Revision: 2063
Modified:
sandbox/adsk/2.2gp/layers/MapGuide/php/GetSelectionProperties.php
sandbox/adsk/2.2gp/layers/MapGuide/php/SaveSelection.php
Log:
Port the fix for #360 Error Message for SetSelection is unclear to this branch.
In fusionError function, only error massage contains text 'Response: ERROR: ' can be processed. So update the 'Respones: SetSelection Exception' to 'Response: ERROR: ' in GetSelectionProperties.php and SaveSelection.php
Modified: sandbox/adsk/2.2gp/layers/MapGuide/php/GetSelectionProperties.php
===================================================================
--- sandbox/adsk/2.2gp/layers/MapGuide/php/GetSelectionProperties.php 2010-02-09 02:32:00 UTC (rev 2062)
+++ sandbox/adsk/2.2gp/layers/MapGuide/php/GetSelectionProperties.php 2010-02-09 02:33:10 UTC (rev 2063)
@@ -179,7 +179,7 @@
} catch(MgException $e) {
- echo "/* SetSelection Exception: " . $e->GetDetails()."*/";
+ echo "ERROR: " . $e->GetDetails() . "\n";
}
function GetParameters($params)
Modified: sandbox/adsk/2.2gp/layers/MapGuide/php/SaveSelection.php
===================================================================
--- sandbox/adsk/2.2gp/layers/MapGuide/php/SaveSelection.php 2010-02-09 02:32:00 UTC (rev 2062)
+++ sandbox/adsk/2.2gp/layers/MapGuide/php/SaveSelection.php 2010-02-09 02:33:10 UTC (rev 2063)
@@ -93,7 +93,7 @@
} catch(MgException $e) {
- echo "/* SetSelection Exception: " . $e->GetDetails()."*/";
+ echo "ERROR: " . $e->GetDetails() . "\n";
}
function GetParameters($params)
More information about the fusion-commits
mailing list