From: Jakub Skoczen Date: Wed, 16 May 2007 20:54:17 +0000 (+0000) Subject: Removed a bug which caused a malfunction of XMLHttpRequest in some browsers. X-Git-Tag: PAZPAR2.1.0.0~131 X-Git-Url: http://lists.indexdata.com/cgi-bin?a=commitdiff_plain;h=831be38b860411592b0eefc5e14ec549f96b887c;p=pazpar2-moved-to-github.git Removed a bug which caused a malfunction of XMLHttpRequest in some browsers. --- diff --git a/js/pz2.js b/js/pz2.js index 062e124..14c9025 100644 --- a/js/pz2.js +++ b/js/pz2.js @@ -1,5 +1,5 @@ /* -** $Id: pz2.js,v 1.14 2007-05-16 07:53:32 jakub Exp $ +** $Id: pz2.js,v 1.15 2007-05-16 20:54:17 jakub Exp $ ** pz2.js - pazpar2's javascript client library. */ @@ -518,7 +518,7 @@ pzHttpRequest.prototype = this.request.onreadystatechange = function () { context._handleResponse(); } - this.request.send(); + this.request.send(null); }, _handleResponse: function ()