[fusion-commits] r2018 - trunk/lib

svn_fusion at osgeo.org svn_fusion at osgeo.org
Sun Dec 13 22:05:53 EST 2009


Author: christinebao
Date: 2009-12-13 22:05:53 -0500 (Sun, 13 Dec 2009)
New Revision: 2018

Modified:
   trunk/lib/fusion.js
Log:
Fix ticket http://trac.osgeo.org/fusion/ticket/304
unknown error when zoom with disconnected server connection

Refine the error message according to Tech Pub's suggestion.

Modified: trunk/lib/fusion.js
===================================================================
--- trunk/lib/fusion.js	2009-12-14 02:43:50 UTC (rev 2017)
+++ trunk/lib/fusion.js	2009-12-14 03:05:53 UTC (rev 2018)
@@ -648,7 +648,7 @@
           if (r.status >= 400) {
               var msg = r.transport.responseText;
               if (msg == "") {
-                  msg = "<h2>MapGuide server not available. Try to reload the application. If this problem persists, please contact the administrator</h2>";
+                  msg = "<h2>MapGuide server is not available. Try to reload the application. If this problem persists, please contact the administrator.</h2>";
               }
               Fusion.reportError(new Fusion.Error(Fusion.Error.FATAL,
                   'xml2json: invalid XML document: ' + msg + " : " + r.request.url));



More information about the fusion-commits mailing list