You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by et...@apache.org on 2008/06/10 19:26:21 UTC

svn commit: r666224 - /incubator/shindig/trunk/features/core.io/io.js

Author: etnu
Date: Tue Jun 10 10:26:21 2008
New Revision: 666224

URL: http://svn.apache.org/viewvc?rev=666224&view=rev
Log:
Fix for query string when makeRequest is performed using GET.


Modified:
    incubator/shindig/trunk/features/core.io/io.js

Modified: incubator/shindig/trunk/features/core.io/io.js
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/features/core.io/io.js?rev=666224&r1=666223&r2=666224&view=diff
==============================================================================
--- incubator/shindig/trunk/features/core.io/io.js (original)
+++ incubator/shindig/trunk/features/core.io/io.js Tue Jun 10 10:26:21 2008
@@ -322,7 +322,7 @@
         if (refreshInterval > 0) {
           // this content should be cached
           // Add paramData to the URL
-          var extraparams = "&refresh=" + refreshInterval + '&'
+          var extraparams = "?refresh=" + refreshInterval + '&'
               + gadgets.io.encodeValues(paramData);
 
           makeXhrRequest(url, config.jsonProxyUrl + extraparams, callback,