https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28633 Blou <philippe.blouin@inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin@inlibro.com --- Comment #144 from Blou <philippe.blouin@inlibro.com> --- (In reply to Kalle Karlsson from comment #143)
We've encountered an issue with this in one of our clients Koha instances. They have an automatic import of borrowers set up. For some borrowers, borrowers.preferred_name is not filled in.
We have the same issue. It's very problematic to our users, a lot of institutions use "automated updates". We can't go through all of them to change that. For reference, here's joubu's diff. We probably will open a new bz diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt index 5f592679263..b30904e1a26 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt @@ -134,7 +134,7 @@ <div class="rows"> <ol> - [% IF ( patron.preferred_name && patron.firstname ) %] + [% IF ( patron.preferred_name && patron.firstname && patron.preferred_name != patron.firstname) %] <li id="patron_first_name"> <span class="label patron_first_name">First name: </span> [% patron.firstname | html %] -- You are receiving this mail because: You are watching all bug changes.