Lines 73-81
if($op && $op eq 'savenew') {
Link Here
|
73 |
|
73 |
|
74 |
if($op && $op eq 'mod') { |
74 |
if($op && $op eq 'mod') { |
75 |
my $borrowersids = $input->param('borrowersids'); |
75 |
my $borrowersids = $input->param('borrowersids'); |
|
|
76 |
my $title = $input->param('title'); |
76 |
my $notes = $input->param('notes'); |
77 |
my $notes = $input->param('notes'); |
77 |
my @borrowernumbers = split /:/, $borrowersids; |
78 |
my @borrowernumbers = split /:/, $borrowersids; |
78 |
ModRoutingList($routinglistid, undef, undef, $notes, @borrowernumbers); |
79 |
ModRoutingList($routinglistid, undef, $title, $notes, @borrowernumbers); |
79 |
my $routinglist = GetRoutingList($routinglistid); |
80 |
my $routinglist = GetRoutingList($routinglistid); |
80 |
print $input->redirect("/cgi-bin/koha/serials/routinglists.pl?subscriptionid=".$routinglist->{'subscriptionid'}); |
81 |
print $input->redirect("/cgi-bin/koha/serials/routinglists.pl?subscriptionid=".$routinglist->{'subscriptionid'}); |
81 |
exit; |
82 |
exit; |
82 |
- |
|
|