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

(-)a/cataloguing/addbiblio.pl (-2 / +3 lines)
Lines 866-871 foreach my $thisframeworkcode ( keys %$frameworks ) { Link Here
866
	push @frameworkcodeloop, \%row;
866
	push @frameworkcodeloop, \%row;
867
} 
867
} 
868
$template->param( frameworkcodeloop => \@frameworkcodeloop,
868
$template->param( frameworkcodeloop => \@frameworkcodeloop,
869
	frameworkcode => $frameworkcode||"Default",
869
	breedingid => $breedingid );
870
	breedingid => $breedingid );
870
871
871
# ++ Global
872
# ++ Global
Lines 963-968 if ( $op eq "addbiblio" ) { Link Here
963
          $template->param( title => $record->title() ) if ($record ne "-1" && C4::Context->preference('marcflavour') eq "usmarc");
964
          $template->param( title => $record->title() ) if ($record ne "-1" && C4::Context->preference('marcflavour') eq "usmarc");
964
          $template->param(
965
          $template->param(
965
            popup => $mode,
966
            popup => $mode,
967
            frameworkcode => $frameworkcode||'Default',
966
            itemtype => $frameworkcode,
968
            itemtype => $frameworkcode,
967
          );
969
          );
968
          output_html_with_http_headers $input, $cookie, $template->output;
970
          output_html_with_http_headers $input, $cookie, $template->output;
Lines 1027-1033 if (C4::Context->preference("marcflavour") eq "MARC21"){ Link Here
1027
1029
1028
$template->param(
1030
$template->param(
1029
    popup => $mode,
1031
    popup => $mode,
1030
    frameworkcode => $frameworkcode,
1032
    frameworkcode => $frameworkcode||'Default',
1031
    itemtype => $frameworkcode,
1033
    itemtype => $frameworkcode,
1032
    borrowernumber => $loggedinuser
1034
    borrowernumber => $loggedinuser
1033
);
1035
);
1034
- 

Return to bug 4513