From: phasefx Date: Mon, 10 May 2010 18:37:44 +0000 (+0000) Subject: backport changesets 16411 and 16393 for authoritative methods X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=45417caf0185dd3442226ca322a560df11c3ce79;p=Evergreen.git backport changesets 16411 and 16393 for authoritative methods git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_6_0@16412 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 e805115fd0..baee1589ed 100644 --- a/Open-ILS/xul/staff_client/server/admin/adminlib.js +++ b/Open-ILS/xul/staff_client/server/admin/adminlib.js @@ -30,7 +30,7 @@ function fetchUser(session) { function fetchFleshedUser(id, callback) { if(id == null) return null; var req = new Request( - 'open-ils.actor:open-ils.actor.user.fleshed.retrieve', SESSION, id ); + 'open-ils.actor:open-ils.actor.user.fleshed.retrieve.authoritative', SESSION, id ); if( callback ) { req.callback( function(r){callback(r.getResultObject());} ); diff --git a/Open-ILS/xul/staff_client/server/patron/summary.js b/Open-ILS/xul/staff_client/server/patron/summary.js index 7f846813a7..09e2765bfb 100644 --- a/Open-ILS/xul/staff_client/server/patron/summary.js +++ b/Open-ILS/xul/staff_client/server/patron/summary.js @@ -694,7 +694,7 @@ patron.summary.prototype = { ); } else if (obj.id && obj.id != 'null') { robj = obj.network.simple_request( - 'FM_AU_FLESHED_RETRIEVE_VIA_ID', + 'FM_AU_FLESHED_RETRIEVE_VIA_ID.authoritative', [ ses(), obj.id ] ); } else {