Bug 3337 - RSS link is not correct for searches without results

RSS links for searches without results didn't have the search terms.

To test:
- Search for something with results and check RSS link
- Search for something with no results and check RSS link

In both cases your search should show up in the link.

Signed-off-by: Nicole C. Engard <nengard@bywatersolutions.com>

RSS Link works in both cases listed in test plan.

Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
This commit is contained in:
Katrin Fischer 2012-04-15 00:09:34 +02:00 committed by Paul Poulain
parent b42a9c46ca
commit 36fe07c3b6

View file

@ -737,7 +737,13 @@ for (my $i=0;$i<@servers;$i++) {
} }
# no hits # no hits
else { else {
$template->param(searchdesc => 1,query_desc => $query_desc,limit_desc => $limit_desc); $template->param(
searchdesc => 1,
query_desc => $query_desc,
limit_desc => $limit_desc,
query_cgi => $query_cgi,
limit_cgi => $limit_cgi
);
} }
} # end of the if local } # end of the if local
# asynchronously search the authority server # asynchronously search the authority server