@@ -, +, @@ systempreference to display 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 @@ -299,8 +299,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 @@ -827,9 +827,8 @@ foreach ( @$reviews ) { } } - -if(C4::Context->preference("ISBD")) { - $template->param(ISBD => 1); +if ( C4::Context->preference("OPACISBD") ) { + $template->param( ISBD => 1 ); } $template->param( --