Bug 8381: Fix adding limits to search history for logged in users
authorKatrin Fischer <Katrin.Fischer.83@web.de>
Sat, 14 Jul 2012 09:37:42 +0000 (11:37 +0200)
committerPaul Poulain <paul.poulain@biblibre.com>
Tue, 17 Jul 2012 12:59:33 +0000 (14:59 +0200)
Due to renaming of some variables the limits were only working for 'anonymous'
users. This patch fixes some variables, so limits are also added to history
when the user is logged in.

Signed-off-by: Alex Arnaud <alex.arnaud@biblibre.com>
Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
opac/opac-search.pl

index 5c6e85b..1e5a0d7 100755 (executable)
@@ -632,7 +632,7 @@ for (my $i=0;$i<@servers;$i++) {
             else {
                 # To the session (the user is logged in)
                 if (($params->{'offset'}||'') eq '') {
-                    AddSearchHistory($borrowernumber, $cgi->cookie("CGISESSID"), $query_desc, $query_cgi, $total);
+                    AddSearchHistory($borrowernumber, $cgi->cookie("CGISESSID"), $query_desc_history, $query_cgi_history, $total);
                     $template->param(ShowOpacRecentSearchLink => 1);
                 }
             }