From: Jakub Skoczen Date: Thu, 20 Dec 2007 13:09:40 +0000 (+0000) Subject: Removing bug in the record method. X-Git-Tag: PAZPAR2.1.0.6~20 X-Git-Url: http://git.indexdata.com/?p=pazpar2-moved-to-github.git;a=commitdiff_plain;h=7182ce9776fbcadef10afe7df72e22997f68be1c Removing bug in the record method. --- diff --git a/js/pz2.js b/js/pz2.js index 925c2c1..4d7f784 100644 --- a/js/pz2.js +++ b/js/pz2.js @@ -1,5 +1,5 @@ /* -** $Id: pz2.js,v 1.67 2007-11-13 13:07:28 jakub Exp $ +** $Id: pz2.js,v 1.68 2007-12-20 13:09:40 jakub Exp $ ** pz2.js - pazpar2's javascript client library. */ @@ -466,23 +466,25 @@ pz2.prototype = } ); }, - record: function(id, offset, params) + record: function(id, offset, pass_params) { // we may call record with no previous search if in proxy mode if( !this.searchStatusOK && this.useSessions) throw new Error( 'Pz2.js: record command has to be preceded with a search command.' - ); - if ( params == undefined ) - params = {}; + ); + var params = {}; + if ( pass_params != undefined ) + params = pass_params; + var callback; if ( params.callback != undefined ) { callback = params.callback; } else { callback = this.recordCallback; } - // what is that? + var handle; if ( params['handle'] == undefined ) handle = {}; else