Sorry for this: One additional bug fixed in the url generation method.

Please use this diff.

Thank you.

Best Regards....

--- source/script/binding/QxXmlHttpLoader.js.orig       Thu Nov 24 08:53:42 2005
+++ source/script/binding/QxXmlHttpLoader.js    Thu Nov 24 09:18:11 2005
@@ -173,11 +173,13 @@
   var vProperties = this._requestProperties;
   var propName;
   
-  if ( vUrl != null && vUrl.indexOf("?") ==  -1 ) vUrl += "?";
+  if ( vUrl != null ) {
+    vUrl += ( vUrl.indexOf("?") ==  -1 ) ? "?" : "&";
+  }
   else vUrl = "";
   
   for (propName in vProperties) {
-  vUrl += propName + "=" + encodeURIComponent(vProperties[propName]) + "&";
+    vUrl += propName + "=" + encodeURIComponent(vProperties[propName]) + "&";
   }
   
   return vUrl;
@@ -209,7 +211,7 @@
     };
 
     var method = this.getRequestMethod();
-    
+
     // append the request properties to the request url
     // if the method is of type GET
     if ( method == "GET" )

Reply via email to