From 2e28ae92ef63ae007df5821ecd2b1c524bdb277e Mon Sep 17 00:00:00 2001 From: phasefx Date: Fri, 23 Jun 2006 02:32:13 +0000 Subject: [PATCH] just show the usrname for Editor and Creator git-svn-id: svn://svn.open-ils.org/ILS/trunk@4725 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/server/cat/copy_editor.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Open-ILS/xul/staff_client/server/cat/copy_editor.js b/Open-ILS/xul/staff_client/server/cat/copy_editor.js index 252682f971..6e581f17df 100644 --- a/Open-ILS/xul/staff_client/server/cat/copy_editor.js +++ b/Open-ILS/xul/staff_client/server/cat/copy_editor.js @@ -254,7 +254,7 @@ g.special_exception = { var p = '??? id = ' + value; try { p = req.getResultObject(); - p = p.usrname() + ' : ' + p.family_name() + ', ' + p.first_given_name(); + p = p.usrname(); } catch(E) { g.error.sdump('D_ERROR','patron retrieve: ' + E); @@ -272,7 +272,7 @@ g.special_exception = { var p = '??? id = ' + value; try { p = req.getResultObject(); - p = p.usrname() + ' : ' + p.family_name() + ', ' + p.first_given_name(); + p = p.usrname(); } catch(E) { g.error.sdump('D_ERROR','patron retrieve: ' + E); -- 2.43.2