From f372e2448652cfd51d99f16c67b8cef924b46cca Mon Sep 17 00:00:00 2001 From: phasefx Date: Wed, 2 Nov 2005 05:37:58 +0000 Subject: [PATCH] throw an exception when auth fails git-svn-id: svn://svn.open-ils.org/ILS/trunk@1943 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- .../xul/staff_client/chrome/content/evergreen/auth/session.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Open-ILS/xul/staff_client/chrome/content/evergreen/auth/session.js b/Open-ILS/xul/staff_client/chrome/content/evergreen/auth/session.js index c5ca1a29fa..92e2848695 100644 --- a/Open-ILS/xul/staff_client/chrome/content/evergreen/auth/session.js +++ b/Open-ILS/xul/staff_client/chrome/content/evergreen/auth/session.js @@ -70,11 +70,13 @@ auth.session.prototype = { this.on_init_error(E); } - //throw(E); + throw(E); + /* This was for testing if (typeof this.on_init == 'function') { this.error.sdump('D_AUTH','auth.session.on_init() despite error\n'); this.on_init(); } + */ } }, -- 2.43.2