From 00eef4755b27b2c8637f10a829999cd095dba90a Mon Sep 17 00:00:00 2001 From: Jakub Skoczen Date: Mon, 4 Jun 2007 12:49:21 +0000 Subject: [PATCH] Cont. --- js/pz2.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/js/pz2.js b/js/pz2.js index 84fd696..52d6ba9 100644 --- a/js/pz2.js +++ b/js/pz2.js @@ -1,5 +1,5 @@ /* -** $Id: pz2.js,v 1.31 2007-06-04 12:31:07 jakub Exp $ +** $Id: pz2.js,v 1.32 2007-06-04 12:49:21 jakub Exp $ ** pz2.js - pazpar2's javascript client library. */ @@ -314,7 +314,9 @@ pz2.prototype = { } else { var nodeName = hits[i].childNodes[j].nodeName; - var nodeText = hits[i].childNodes[j].firstChild.nodeValue; + var nodeText = 'ERROR' + if ( hits[i].childNodes[j].firstChild ) + nodeText = hits[i].childNodes[j].firstChild.nodeValue; show.hits[i][nodeName] = nodeText; } } -- 1.7.10.4