From b3fdc05dba29eb7f55637e3b9e2b43468ee9eb1d Mon Sep 17 00:00:00 2001 From: David Bourgault Date: Wed, 22 Nov 2017 13:58:21 -0500 Subject: [PATCH] Bug 19681: Correct result count formatting Content-Type: text/plain; charset=utf-8 This simply passes the missing information to the template. Test plan: 0) Apply patch 1) Go to Tools > Label creator > New > Label batch 2) Press 'Add items' 3) Do a search that will return few items 4) The result count will read "Results 1 through X of X" Signed-off-by: Owen Leonard Signed-off-by: Marcel de Rooy --- labels/label-item-search.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/labels/label-item-search.pl b/labels/label-item-search.pl index 53b7d46..d93c922 100755 --- a/labels/label-item-search.pl +++ b/labels/label-item-search.pl @@ -202,6 +202,8 @@ if ($show_results) { } else { + $from = 1; + $to = $total_hits; $displayprev = 0; $displaynext = 0; } -- 2.1.4