https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28966 Kyle M Hall <kyle@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff --- Comment #26 from Kyle M Hall <kyle@bywatersolutions.com> --- Can you provide a screenshot? Did you test the patch? It's working fine for me! (In reply to Andreas Jonsson from comment #24)
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.