Lines 756-761
if (!C4::Context->preference("OPACXSLTDetailsDisplay") ) {
Link Here
|
756 |
my $marcnotesarray = GetMarcNotes ($record,$marcflavour); |
756 |
my $marcnotesarray = GetMarcNotes ($record,$marcflavour); |
757 |
my $subtitle = GetRecordValue('subtitle', $record, GetFrameworkCode($biblionumber)); |
757 |
my $subtitle = GetRecordValue('subtitle', $record, GetFrameworkCode($biblionumber)); |
758 |
|
758 |
|
|
|
759 |
if( C4::Context->preference('ArticleRequests') ) { |
760 |
my $patron = $borrowernumber ? Koha::Patrons->find($borrowernumber) : undef; |
761 |
my $artreqpossible = $patron |
762 |
? $biblio->can_article_request( $patron ) |
763 |
: $biblio->may_article_request; |
764 |
$template->param( artreqpossible => $artreqpossible ); |
765 |
} |
766 |
|
759 |
$template->param( |
767 |
$template->param( |
760 |
MARCNOTES => $marcnotesarray, |
768 |
MARCNOTES => $marcnotesarray, |
761 |
norequests => $norequests, |
769 |
norequests => $norequests, |
762 |
- |
|
|