From ebd413d705ce09214a3b0281d2daecac60f32e5b Mon Sep 17 00:00:00 2001 From: Jakub Skoczen Date: Fri, 1 Jun 2007 08:16:12 +0000 Subject: [PATCH] Form url encoded. --- js/pz2.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/pz2.js b/js/pz2.js index c0fac99..be895d0 100644 --- a/js/pz2.js +++ b/js/pz2.js @@ -1,5 +1,5 @@ /* -** $Id: pz2.js,v 1.23 2007-06-01 08:06:17 jakub Exp $ +** $Id: pz2.js,v 1.24 2007-06-01 08:16:12 jakub Exp $ ** pz2.js - pazpar2's javascript client library. */ @@ -541,7 +541,7 @@ pzHttpRequest.prototype = var context = this; this.request.open( 'GET', getUrl, true ); - this.request.setRequestHeader('Accept-Charset', 'ISO-8859-1,utf-8;q=0.7,*;q=0.7'); + this.request.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); this.request.onreadystatechange = function () { context._handleResponse(); } -- 1.7.10.4