https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28966
--- Comment #24 from Andreas Jonsson <[email protected]> --- The column "Patron category" on the page /cgi-bin/koha/circ/view_holdsqueue.pl will contain empty parentheses. This patch removes the patron attribute from each item: - for my $item ( @$items ) { - $item->{patron} = Koha::Patrons->find( $item->{borrowernumber} ); - } But the displaying of category uses this attribute: <td class="hq-patroncategory">[% itemsloo.patron.category.description | html %] ([% itemsloo.patron.categorycode | html %])</td> Also, the phone number should be affected: [% UNLESS Koha.Preference('HidePatronName') %] <p>[% itemsloo.patron.phone | html %]</p> [% END %] -- 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/
