]> err.no Git - scalable-opengroupware.org/commitdiff
fixed POST for Firefox on Windows
authorznek <znek@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Thu, 21 Jul 2005 09:32:34 +0000 (09:32 +0000)
committerznek <znek@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Thu, 21 Jul 2005 09:32:34 +0000 (09:32 +0000)
git-svn-id: http://svn.opengroupware.org/SOGo/trunk@864 d1b88da0-ebda-0310-925b-ed51d893ca5b

SOGo/Main/ChangeLog
SOGo/Main/Version
SOGo/Main/homepage.js

index ef09b095627efaf634934a99c9293dcb5f22657b..9253a79b530ed20f13bd353633585b20fb0b16a7 100644 (file)
@@ -1,3 +1,8 @@
+2005-07-21  Marcus Mueller  <znek@mulle-kybernetik.com>
+
+       * homepage.js: fixed post to send an empty string instead of null -
+         this works in Firefox on MacOSX but fails on Windows (v0.9.36)
+
 2005-07-20  Marcus Mueller  <znek@mulle-kybernetik.com>
 
        * v0.9.35
index e4c2cdf37d300eeff1172cc427f4c156799e9328..b991595c0e26e9832a2cce7e9c5159c9cf35c268 100644 (file)
@@ -1,6 +1,6 @@
 # Version file
 
-SUBMINOR_VERSION:=35
+SUBMINOR_VERSION:=36
 
 # v0.9.32 requires libSOGo         v0.9.57
 # v0.9.24 requires libWEExtensions v4.5.67
index 69057dd6835756c71ec6ced42b302a96d298e05b..b98b9a17b82fb05af31284d2049c0ebfd685e459 100644 (file)
@@ -36,13 +36,14 @@ function postInternetAccessState(sender, state) {
     
     if (http) {
         http.open("POST", url, false);
-        http.send(null);
+        http.send("");
         if (http.status != 200) {
             alert("Failed to change state: " + http.statusText);
-            window.opener.location.reload();
+            window.location.reload();
         }
     }
     else {
-        window.opener.location.href = url;
+        alert("Unable to retrieve HTTPClient object!");
+        window.location.href = url;
     }
 }