Lines 97-103
my $filter_archived = $input->param('filter_archived');
Link Here
|
97 |
my $reasonsloop = GetAuthorisedValues("SUGGEST"); |
97 |
my $reasonsloop = GetAuthorisedValues("SUGGEST"); |
98 |
|
98 |
|
99 |
# filter informations which are not suggestion related. |
99 |
# filter informations which are not suggestion related. |
100 |
my $suggestion_ref = $input->Vars; |
100 |
my $suggestion_ref = { %{$input->Vars} }; # Copying, otherwise $input will be modified |
101 |
|
101 |
|
102 |
# get only the columns of Suggestion |
102 |
# get only the columns of Suggestion |
103 |
my $schema = Koha::Database->new()->schema; |
103 |
my $schema = Koha::Database->new()->schema; |
104 |
- |
|
|