From: phasefx Date: Mon, 28 Mar 2011 16:31:26 +0000 (+0000) Subject: fixes things like the stat cat editor, since that extra param now changes the return... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=417ee0d95d5f09f9926dedf1b0e93f98f4794216;p=evergreen%2Fequinox.git fixes things like the stat cat editor, since that extra param now changes the return signature of the method Signed-off-by: Jason Etheridge git-svn-id: svn://svn.open-ils.org/ILS/trunk@19865 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/xul/staff_client/server/admin/adminlib.js b/Open-ILS/xul/staff_client/server/admin/adminlib.js index b18bb05722..2a9bd58dc6 100644 --- a/Open-ILS/xul/staff_client/server/admin/adminlib.js +++ b/Open-ILS/xul/staff_client/server/admin/adminlib.js @@ -18,7 +18,7 @@ function fetchUser(session) { } if(!session) throw "User session is not defined"; SESSION = session; - var request = new Request(FETCH_SESSION, session, 1); + var request = new Request(FETCH_SESSION, session); request.send(true); var user = request.result(); if(checkILSEvent(user)) throw user;