https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28633
Blou <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #144 from Blou <[email protected]> --- (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. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
