@@ -, +, @@ link --- opac/opac-MARCdetail.pl | 4 ++-- opac/opac-detail.pl | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) --- a/opac/opac-MARCdetail.pl +++ a/opac/opac-MARCdetail.pl @@ -300,8 +300,8 @@ for my $subfield_code ( @item_subfield_codes ) { } } -if(C4::Context->preference("ISBD")) { - $template->param(ISBD => 1); +if ( C4::Context->preference("OPACISBD") ) { + $template->param( ISBD => 1 ); } #Search for title in links --- a/opac/opac-detail.pl +++ a/opac/opac-detail.pl @@ -828,9 +828,8 @@ foreach ( @$reviews ) { } } - -if(C4::Context->preference("ISBD")) { - $template->param(ISBD => 1); +if ( C4::Context->preference("OPACISBD") ) { + $template->param( ISBD => 1 ); } $template->param( --