https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14715

--- Comment #23 from Jokin Perez de ViƱaspre <[email protected]> ---
Hi!

Yes, I runned updatedatabase.pl

To solve the problem of pagination I change one line in
a/opac/opac-search.pl(line 527) and a/catalogue/search.pl(line 456) of your
patch

my $offset = $results_per_page != 'all' ? ($page-1)*$results_per_page : 0;
to: 
my $offset = $params->{'offset'} || 0;

With that change works fine.

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to