From 92decf23bf1b73f512fb65df0f345dc5b5537c39 Mon Sep 17 00:00:00 2001 From: tipaul Date: Mon, 13 Sep 2004 15:25:38 +0000 Subject: [PATCH] separating additional authors with - instead of a , a , can be used in french to separate name & surname --- C4/Suggestions.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Suggestions.pm b/C4/Suggestions.pm index 2a919c24ca..d528af4f5d 100644 --- a/C4/Suggestions.pm +++ b/C4/Suggestions.pm @@ -118,7 +118,7 @@ sub searchsuggestion { my @results; my $even=1; # the even variable is used to set even / odd lines, for highlighting while (my $data=$sth->fetchrow_hashref){ - $data->{$data->{status}} = 1; + $data->{$data->{STATUS}} = 1; if ($even) { $even=0; $data->{even}=1; -- 2.39.5