From 517833778439f1d7060cf15ca62919d6531890c1 Mon Sep 17 00:00:00 2001 From: rangi Date: Wed, 28 Apr 2004 09:09:27 +0000 Subject: [PATCH] Fix for bug 752 --- C4/Search.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Search.pm b/C4/Search.pm index 8002906096..1cf0103694 100755 --- a/C4/Search.pm +++ b/C4/Search.pm @@ -1226,7 +1226,7 @@ sub CatSearch { } } else { if ($type eq 'subject'){ - $query .= "order by subject group by subject "; + $query .= " group by subject "; } } my $sth=$dbh->prepare($query); -- 2.39.5