From 46e2ac9e16836ae74772925fcd66d14f493077b3 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Fri, 18 Mar 2022 13:22:08 +0000 Subject: [PATCH] Bug 23991: (follow-up) Missing semicolon Signed-off-by: Nick Clemens --- opac/opac-suggestions.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opac/opac-suggestions.pl b/opac/opac-suggestions.pl index 8c6c3e6b81..b2ab7609bc 100755 --- a/opac/opac-suggestions.pl +++ b/opac/opac-suggestions.pl @@ -129,7 +129,7 @@ if ( $op eq 'else' ) { $suggestion = { map { - my $p = $suggestion->{$_} + my $p = $suggestion->{$_}; # Keep parameters that are not an empty string ( defined $p && $p ne '' ? ( $_ => $p ) : () ) } keys %$suggestion -- 2.30.2