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

(-)a/opac/opac-MARCdetail.pl (-2 / +2 lines)
Lines 300-307 for my $subfield_code ( @item_subfield_codes ) { Link Here
300
     }
300
     }
301
}
301
}
302
302
303
if(C4::Context->preference("ISBD")) {
303
if ( C4::Context->preference("OPACISBD") ) {
304
	$template->param(ISBD => 1);
304
    $template->param( ISBD => 1 );
305
}
305
}
306
306
307
#Search for title in links
307
#Search for title in links
(-)a/opac/opac-detail.pl (-4 / +2 lines)
Lines 828-836 foreach ( @$reviews ) { Link Here
828
	}
828
	}
829
}
829
}
830
830
831
831
if ( C4::Context->preference("OPACISBD") ) {
832
if(C4::Context->preference("ISBD")) {
832
    $template->param( ISBD => 1 );
833
	$template->param(ISBD => 1);
834
}
833
}
835
834
836
$template->param(
835
$template->param(
837
- 

Return to bug 5979