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

(-)a/opac/opac-MARCdetail.pl (-2 / +2 lines)
Lines 277-284 foreach my $subfield_code ( keys(%witness) ) { Link Here
277
    push( @header_value_loop, \%header_value );
277
    push( @header_value_loop, \%header_value );
278
}
278
}
279
279
280
if(C4::Context->preference("ISBD")) {
280
if ( C4::Context->preference("OPACISBD") ) {
281
	$template->param(ISBD => 1);
281
    $template->param( ISBD => 1 );
282
}
282
}
283
283
284
#Export options
284
#Export options
(-)a/opac/opac-detail.pl (-4 / +2 lines)
Lines 685-693 foreach ( @$reviews ) { Link Here
685
	}
685
	}
686
}
686
}
687
687
688
688
if ( C4::Context->preference("OPACISBD") ) {
689
if(C4::Context->preference("ISBD")) {
689
    $template->param( ISBD => 1 );
690
	$template->param(ISBD => 1);
691
}
690
}
692
691
693
$template->param(
692
$template->param(
694
- 

Return to bug 5979