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

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

Return to bug 22784