]> err.no Git - scalable-opengroupware.org/commitdiff
fixed POST requests
authorhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Thu, 21 Jul 2005 09:15:34 +0000 (09:15 +0000)
committerhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Thu, 21 Jul 2005 09:15:34 +0000 (09:15 +0000)
git-svn-id: http://svn.opengroupware.org/SOGo/trunk@863 d1b88da0-ebda-0310-925b-ed51d893ca5b

SOGo/UI/WebServerResources/ChangeLog
SOGo/UI/WebServerResources/mailer.js

index d7bb9c0fb014078d4a4826d4ebe27d596581c67b..67b8a6ee094b0013419bd3910ea5501fdfb53964 100644 (file)
@@ -1,5 +1,8 @@
 2005-07-21  Helge Hess  <helge.hess@opengroupware.org>
 
+       * mailer.js: fixed a Linux Firefox issue with using POST in
+         XMLHttpRequest (must pass an empty string for a send, not 'null')
+
        * mailer.js: fixed a bug with calling the opener on errors
 
 2005-07-20  Helge Hess  <helge.hess@opengroupware.org>
index b41421ebaf01e93d91a4a6e7c0f010993b032b69..057f8aea652e583d7ce089a97c2a5189c3bb7680 100644 (file)
@@ -270,7 +270,7 @@ function mailListMarkMessage(sender, action, msguid, markread) {
   if (http) {
     // TODO: add parameter to signal that we are only interested in OK
     http.open("POST", url + "&jsonly=1", false /* not async */);
-    http.send(null);
+    http.send("");
     if (http.status != 200) {
       // TODO: refresh page?
       alert("Message Mark Failed: " + http.statusText);
@@ -346,7 +346,7 @@ function uixDeleteSelectedMessages(sender) {
     
     http = createHTTPClient();
     http.open("POST", url, false /* not async */);
-    http.send(null);
+    http.send("");
     if (http.status != 200) { /* request failed */
       failCount++;
       http = null;
@@ -359,7 +359,6 @@ function uixDeleteSelectedMessages(sender) {
     /* line-through would be nicer, but hiding is OK too */
     rowElem = document.getElementById("row_" + rows[i]);
     rowElem.style.display = "none";
-    
   }
   
   if (failCount > 0)