use authoritative method here to fix race condition with patron editor and replicatio...
authorphasefx <phasefx@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Mon, 10 May 2010 18:32:18 +0000 (18:32 +0000)
committerphasefx <phasefx@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Mon, 10 May 2010 18:32:18 +0000 (18:32 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_6@16411 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/xul/staff_client/server/admin/adminlib.js

index b18bb05..75170b7 100644 (file)
@@ -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());} );