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

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

Return to bug 5979