https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=39276 --- Comment #5 from Lucas Gass (lukeg) <lucas@bywatersolutions.com> --- (In reply to Lucas Gass (lukeg) from comment #4)
There seems to be no reason to show the column at all if there are no item level holds. You shouldn't be able to mix item level and record level holds.
Then we don't need to pass show_priority to the template either.
Nevermind, we pass priority when the hold is not item level: 623 $hold->itemnumber 624 ? ( $priority{ $hold->itemnumber } = $hold->priority ) 625 : ( $template->param( priority => $hold->priority ) ); We just need to show it in the template. -- You are receiving this mail because: You are watching all bug changes.