From: phasefx Date: Fri, 25 Mar 2011 18:20:31 +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=451a910bc5fdd8a1b7888b42c9d03368533c9604;p=evergreen%2Ftadl.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/branches/rel_2_1@19863 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;