@@ -, +, @@ - Run: $ koha-plack-err - Edit a vendor in the acquisitions module - Save CGI::param called in list context from package CGI::Compile::ROOT::home_vagrant_kohaclone_acqui_updatesupplier_2epl - Apply this patch - Run: $ restart_all $ koha-plack-err - Edit a vendor, add/delete vendor contacts - Verify editing and storing vendor contacts works as expected. - Sign off :-D --- acqui/updatesupplier.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/acqui/updatesupplier.pl +++ a/acqui/updatesupplier.pl @@ -99,7 +99,7 @@ my @contacts; my %contact_info; foreach (qw(id name position phone altphone fax email notes orderacquisition claimacquisition claimissues acqprimary serialsprimary)) { - $contact_info{$_} = [ $input->param('contact_' . $_) ]; + $contact_info{$_} = [ $input->multi_param('contact_' . $_) ]; } for my $cnt (0..scalar(@{$contact_info{'id'}})) { --