From: phasefx Date: Tue, 20 Oct 2009 18:37:45 +0000 (+0000) Subject: don't treat Hold Alias (which is for replacing a name entirely on a hold slip) as... X-Git-Tag: kcls-grey-screen-prod1~3265 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=f17ef24792f69c5e16fc10adf5eb25e7b48be25c;p=evergreen%2Fequinox.git don't treat Hold Alias (which is for replacing a name entirely on a hold slip) as a Name Alias git-svn-id: svn://svn.open-ils.org/ILS/trunk@14508 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/xul/staff_client/server/patron/util.js b/Open-ILS/xul/staff_client/server/patron/util.js index e690cb6745..1769d73b09 100644 --- a/Open-ILS/xul/staff_client/server/patron/util.js +++ b/Open-ILS/xul/staff_client/server/patron/util.js @@ -813,8 +813,7 @@ patron.util.format_name = function(patron_obj) { patron_obj.family_name() + ', ' + patron_obj.first_given_name() + ' ' + ( patron_obj.second_given_name() ? patron_obj.second_given_name() + ' ' : '' ) + - ( patron_obj.suffix() ? patron_obj.suffix() : '') + - ( patron_obj.alias() ? ' (' + patron_obj.alias() + ')' : ''); + ( patron_obj.suffix() ? patron_obj.suffix() : ''); return patron_name; }