From: phasefx Date: Wed, 2 Nov 2005 05:37:58 +0000 (+0000) Subject: throw an exception when auth fails X-Git-Tag: sprint4-merge-nov22~18985 X-Git-Url: https://git.evergreen-ils.org/?p=working%2FEvergreen.git;a=commitdiff_plain;h=f372e2448652cfd51d99f16c67b8cef924b46cca throw an exception when auth fails git-svn-id: svn://svn.open-ils.org/ILS/trunk@1943 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- 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(); } + */ } },