From 8ab49f47015f7bd6790b557a49734be3f1830eec Mon Sep 17 00:00:00 2001 From: tonnesen Date: Thu, 24 Oct 2002 19:20:12 +0000 Subject: [PATCH] Call to subsearch() wasn't including the offset and num variables so nothing was getting returned. --- search.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/search.pl b/search.pl index 0ff23f03d0..fd7f53767f 100755 --- a/search.pl +++ b/search.pl @@ -93,7 +93,7 @@ my @results; my $count; if (my $subject=$query->param('subjectitems')) { my $blah; - @results=subsearch(\$blah,$subject); + @results=subsearch(\$blah,$subject,$num,$startfrom); $count=$#results+1; } else { ($count,@results)=catalogsearch($env,'',\%search,$num,$startfrom); -- 2.39.5