From 50e691d393f2daba7d541e1a19bb13f0cfc96316 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Mon, 25 Jun 2007 07:23:56 +0000 Subject: [PATCH] Fixed usesessions=false mode. The initStatusOK was not set to true. --- js/pz2.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/js/pz2.js b/js/pz2.js index 950cfa1..0f2a906 100644 --- a/js/pz2.js +++ b/js/pz2.js @@ -1,5 +1,5 @@ /* -** $Id: pz2.js,v 1.39 2007-06-22 10:52:09 adam Exp $ +** $Id: pz2.js,v 1.40 2007-06-25 07:23:56 adam Exp $ ** pz2.js - pazpar2's javascript client library. */ @@ -161,7 +161,9 @@ pz2.prototype = setTimeout("__myself.init()", 1000); } ); - } + } else { + __myself.initStatusOK = true; + } }, // no need to ping explicitly ping: function () -- 1.7.10.4