https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28360
--- Comment #1 from Katrin Fischer <[email protected]> --- I just retested this in 20.11: ArticleRequestsLinkControl = Always show - Result list: Article request link always shows - Detail page: Article request link only shows when logged in I think this is because of the check on the artreqpossible template variable - I suspect it can only be 1 if the user is logged in: my $artreqpossible = $patron ? $biblio->can_article_request( $patron ) : $itemtype ? $itemtype->may_article_request : q{}; $template->param( artreqpossible => $artreqpossible ); The code for the same variable in the result list is certainly different, but completely mysterious to me: # BZ17530: 'Intelligent' guess if result can be article requested $res->{artreqpossible} = ( $art_req_itypes->{ $res->{itemtype} // q{} } || $art_req_itypes->{ '*' } ) ? 1 : q{}; I am not sure how to fix this :( -- 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/
