From a6f4696044f1e5b5f1a428b6313a4cb0ec0c6232 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 13 Sep 2013 09:55:51 +0200 Subject: [PATCH] [SIGNED-OFF] Bug 10856: If callnumbers are equals, order should be on itemnumbers Content-Type: text/plain; charset="utf-8" If a lot of items has the same callnumber, the order should be on the itemnumbers. Otherwise the left side is always filled with the same items. + Fix a bad c/p for the next link (when js is disabled). Signed-off-by: Owen Leonard --- C4/ShelfBrowser.pm | 2 +- .../opac-tmpl/prog/en/includes/shelfbrowser.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/C4/ShelfBrowser.pm b/C4/ShelfBrowser.pm index 555ad05..763b406 100644 --- a/C4/ShelfBrowser.pm +++ b/C4/ShelfBrowser.pm @@ -171,7 +171,7 @@ sub GetNearbyItems { my @prev_items = @{ $dbh->selectall_arrayref( - $prev_query . $query_cond . ' ORDER BY cn_sort DESC, itemnumber LIMIT ?', + $prev_query . $query_cond . ' ORDER BY cn_sort DESC, itemnumber DESC LIMIT ?', { Slice => {} }, ( @params, $gap ) ) diff --git a/koha-tmpl/opac-tmpl/prog/en/includes/shelfbrowser.inc b/koha-tmpl/opac-tmpl/prog/en/includes/shelfbrowser.inc index c41647a..f5672f9 100644 --- a/koha-tmpl/opac-tmpl/prog/en/includes/shelfbrowser.inc +++ b/koha-tmpl/opac-tmpl/prog/en/includes/shelfbrowser.inc @@ -67,7 +67,7 @@ [% IF shelfbrowser_next_item %]
- Next + Next
[% END %] -- 1.7.9.5