From 4232abd6677bb50793d137335de6260d577d3390 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 18 Nov 2019 14:56:05 +0100 Subject: [PATCH] Bug 22784: Bugfix - do not modify #description build Debian packages from a git repository MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Séverine QUEUNE Signed-off-by: Katrin Fischer --- suggestion/suggestion.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/suggestion/suggestion.pl b/suggestion/suggestion.pl index cdfa5fb817..464badb138 100755 --- a/suggestion/suggestion.pl +++ b/suggestion/suggestion.pl @@ -97,7 +97,7 @@ my $filter_archived = $input->param('filter_archived'); my $reasonsloop = GetAuthorisedValues("SUGGEST"); # filter informations which are not suggestion related. -my $suggestion_ref = $input->Vars; +my $suggestion_ref = { %{$input->Vars} }; # Copying, otherwise $input will be modified # get only the columns of Suggestion my $schema = Koha::Database->new()->schema; -- 2.11.0