[Koha-bugs] [Bug 13205] Last/First page options for result list paging

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Sat Oct 7 03:34:41 CEST 2017


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

--- Comment #20 from Nick Clemens <nick at bywatersolutions.com> ---
Created attachment 67777
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=67777&action=edit
Bug 13205: [FOLLOW-UP] Fixing math and variable names

Have changed
  my $last_page = $pages * ( $results_per_page - 1 );
to
  my $last_page = ( $pages - 1) * $results_per_page;
which seems to fix the 'last' button offset! (Comment 10)

Will add the box to jump to a page in a separate patch.
Adding the pagination to the top on the staff client will be dealt with
in Bug 18916 as it is slightly out of the scope of this bug.

Signed-off-by: Lee Jamison <ldjamison at marywood.edu>

Signed-off-by: Nick Clemens <nick at bywatersolutions.com>

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list