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

(-)a/cataloguing/addbiblio.pl (-3 / +4 lines)
Lines 823-829 $is_a_modif = 0; Link Here
823
    
823
    
824
if ($biblionumber) {
824
if ($biblionumber) {
825
    $is_a_modif = 1;
825
    $is_a_modif = 1;
826
	$template->param( title => $record->title(), );
826
    $template->param( title => $record->subfield('200',"a") ) if C4::Context->preference('marcflavour') =~/unimarc/i;
827
    $template->param( title => $record->title() ) if C4::Context->preference('marcflavour') eq "usmarc";
827
828
828
    # if it's a modif, retrieve bibli and biblioitem numbers for the future modification of old-DB.
829
    # if it's a modif, retrieve bibli and biblioitem numbers for the future modification of old-DB.
829
    ( $biblionumbertagfield, $biblionumbertagsubfield ) =
830
    ( $biblionumbertagfield, $biblionumbertagsubfield ) =
Lines 983-989 elsif ( $op eq "delete" ) { Link Here
983
    );
984
    );
984
}
985
}
985
986
986
$template->param( title => $record->title() ) if ( $record ne "-1" );
987
$template->param( title => $record->subfield('200',"a") ) if ($record ne "-1" && C4::Context->preference('marcflavour') =~/unimarc/i);
988
$template->param( title => $record->title() ) if ($record ne "-1" && C4::Context->preference('marcflavour') eq "usmarc");
987
$template->param(
989
$template->param(
988
    popup => $mode,
990
    popup => $mode,
989
    frameworkcode => $frameworkcode,
991
    frameworkcode => $frameworkcode,
990
- 

Return to bug 13635