From 831be38b860411592b0eefc5e14ec549f96b887c Mon Sep 17 00:00:00 2001 From: Jakub Skoczen Date: Wed, 16 May 2007 20:54:17 +0000 Subject: [PATCH] Removed a bug which caused a malfunction of XMLHttpRequest in some browsers. --- js/pz2.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 () -- 1.7.10.4