+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
# Version file
-SUBMINOR_VERSION:=35
+SUBMINOR_VERSION:=36
# v0.9.32 requires libSOGo v0.9.57
# v0.9.24 requires libWEExtensions v4.5.67
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;
}
}