Bug 12627: Remove warnings
authorJonathan Druart <jonathan.druart@biblibre.com>
Mon, 29 Sep 2014 13:24:36 +0000 (15:24 +0200)
committerTomas Cohen Arazi <tomascohen@gmail.com>
Fri, 7 Nov 2014 18:17:04 +0000 (15:17 -0300)
suggestion.pl: keys on reference is experimental

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>

suggestion/suggestion.pl

index 72f40d3..211daa8 100755 (executable)
@@ -98,7 +98,7 @@ my $suggestion_ref  = $input->Vars;
 # get only the columns of Suggestion
 my $schema = Koha::Database->new()->schema;
 my $columns = ' '.join(' ', $schema->source('Suggestion')->columns).' ';
-my $suggestion_only = { map { $columns =~ / $_ / ? ($_ => $suggestion_ref->{$_}) : () } keys($suggestion_ref) };
+my $suggestion_only = { map { $columns =~ / $_ / ? ($_ => $suggestion_ref->{$_}) : () } keys %$suggestion_ref };
 $suggestion_only->{STATUS} = $suggestion_ref->{STATUS};
 
 delete $$suggestion_ref{$_} foreach qw( suggestedbyme op displayby tabcode edit_field );