View | Details | Raw Unified | Return to bug 40879
Collapse All | Expand All

(-)a/opac/opac-ISBDdetail.pl (-1 / +3 lines)
Lines 238-243 if ( C4::Context->preference('ArticleRequests') ) { Link Here
238
}
238
}
239
239
240
# Cites
240
# Cites
241
$template->param( cites => C4::Record::marc2cites($record) );
241
if ( C4::Context->preference('OPACCite') ) {
242
    $template->param( cites => C4::Record::marc2cites($record) );
243
}
242
244
243
output_html_with_http_headers $query, $cookie, $template->output;
245
output_html_with_http_headers $query, $cookie, $template->output;
(-)a/opac/opac-MARCdetail.pl (-1 / +3 lines)
Lines 387-392 $template->param( Link Here
387
);
387
);
388
388
389
# Cites
389
# Cites
390
$template->param( cites => C4::Record::marc2cites($record) );
390
if ( C4::Context->preference('OPACCite') ) {
391
    $template->param( cites => C4::Record::marc2cites($record) );
392
}
391
393
392
output_html_with_http_headers $query, $cookie, $template->output;
394
output_html_with_http_headers $query, $cookie, $template->output;
(-)a/opac/opac-detail.pl (-2 / +3 lines)
Lines 1287-1292 if ( C4::Context->preference('OPACAuthorIdentifiersAndInformation') ) { Link Here
1287
}
1287
}
1288
1288
1289
# Cites
1289
# Cites
1290
$template->param( cites => C4::Record::marc2cites($record) );
1290
if ( C4::Context->preference('OPACCite') ) {
1291
    $template->param( cites => C4::Record::marc2cites($record) );
1292
}
1291
1293
1292
output_html_with_http_headers $query, $cookie, $template->output;
1294
output_html_with_http_headers $query, $cookie, $template->output;
1293
- 

Return to bug 40879