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

(-)a/acqui/finishreceive.pl (-1 / +1 lines)
Lines 80-86 my $basket = $order_obj->basket; Link Here
80
if ($quantityrec > $origquantityrec ) {
80
if ($quantityrec > $origquantityrec ) {
81
    my @received_items = ();
81
    my @received_items = ();
82
    if ($basket->effective_create_items eq 'ordering') {
82
    if ($basket->effective_create_items eq 'ordering') {
83
        @received_items = $input->param('items_to_receive');
83
        @received_items = $input->multi_param('items_to_receive');
84
        my @affects = split q{\|}, C4::Context->preference("AcqItemSetSubfieldsWhenReceived");
84
        my @affects = split q{\|}, C4::Context->preference("AcqItemSetSubfieldsWhenReceived");
85
        if ( @affects ) {
85
        if ( @affects ) {
86
            my $frameworkcode = GetFrameworkCode($biblionumber);
86
            my $frameworkcode = GetFrameworkCode($biblionumber);
(-)a/svc/cover_images (-1 / +1 lines)
Lines 37-43 if ( $auth_status ne "ok" ) { Link Here
37
}
37
}
38
38
39
my $action       = $input->param('action');
39
my $action       = $input->param('action');
40
my @imagenumbers = $input->param('imagenumber');
40
my @imagenumbers = $input->multi_param('imagenumber');
41
41
42
# Array to store the reponse JSON
42
# Array to store the reponse JSON
43
my $response = [];
43
my $response = [];
(-)a/svc/members/add_to_list (-3 / +3 lines)
Lines 32-40 my ( $auth_status ) = check_cookie_auth( Link Here
32
);
32
);
33
33
34
exit 0 if $auth_status ne "ok";
34
exit 0 if $auth_status ne "ok";
35
my $add_to_patron_list       = $input->param('add_to_patron_list');
35
my $add_to_patron_list = $input->param('add_to_patron_list');
36
my $new_patron_list          = $input->param('new_patron_list');
36
my $new_patron_list    = $input->param('new_patron_list');
37
my @borrowernumbers          = $input->param('borrowernumbers[]');
37
my @borrowernumbers    = $input->multi_param('borrowernumbers[]');
38
38
39
my $response;
39
my $response;
40
if ($add_to_patron_list) {
40
if ($add_to_patron_list) {
(-)a/tools/import_borrowers.pl (-1 / +1 lines)
Lines 93-99 if ( $input->param('sample') ) { Link Here
93
    exit 0;
93
    exit 0;
94
}
94
}
95
95
96
my @preserve_fields = $input->param('preserve_existing');
96
my @preserve_fields = $input->multi_param('preserve_existing');
97
97
98
my $uploadborrowers = $input->param('uploadborrowers');
98
my $uploadborrowers = $input->param('uploadborrowers');
99
my $matchpoint      = $input->param('matchpoint');
99
my $matchpoint      = $input->param('matchpoint');
(-)a/tools/stockrotation.pl (-2 / +1 lines)
Lines 376-382 if (!defined $op) { Link Here
376
} elsif ($op eq 'move_items_to_rota') {
376
} elsif ($op eq 'move_items_to_rota') {
377
377
378
    # The barcodes of the items we're moving
378
    # The barcodes of the items we're moving
379
    my @move = $input->param('move_item');
379
    my @move = $input->multi_param('move_item');
380
380
381
    foreach my $item(@move) {
381
    foreach my $item(@move) {
382
382
383
- 

Return to bug 29771