Bugzilla – Attachment 20218 Details for
Bug 10704
Search term highlighting doesn't work beyond the first results page
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Hit highlighting not working on Previous & Next buttons
Hit-highlighting-not-working-on-Previous--Next-but.patch (text/plain), 1.58 KB, created by
Kyle M Hall (khall)
on 2013-08-09 12:31:44 UTC
(
hide
)
Description:
Hit highlighting not working on Previous & Next buttons
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2013-08-09 12:31:44 UTC
Size:
1.58 KB
patch
obsolete
>From e2b91ba42760e7028ec49263535740a6c3224c45 Mon Sep 17 00:00:00 2001 >From: Jonathan Field <jonathan.field@ptfs-europe.com> >Date: Fri, 9 Aug 2013 11:38:31 +0100 >Subject: [PATCH] Hit highlighting not working on Previous & Next buttons > >http://bugs.koha-community.org/show_bug.cgi?id=10704 >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > opac/opac-detail.pl | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > >diff --git a/opac/opac-detail.pl b/opac/opac-detail.pl >index 9d0851f..d1f5d91 100755 >--- a/opac/opac-detail.pl >+++ b/opac/opac-detail.pl >@@ -365,13 +365,13 @@ if ($session->param('busc')) { > my ($previous, $next, $dataBiblioPaging); > # Previous biblio > if ($paging{'previous'}->{biblionumber}) { >- $previous = 'opac-detail.pl?biblionumber=' . $paging{'previous'}->{biblionumber}; >+ $previous = 'opac-detail.pl?biblionumber=' . $paging{'previous'}->{biblionumber} . '&query_desc=' . $query->param('query_desc'); > $dataBiblioPaging = GetBiblioData($paging{'previous'}->{biblionumber}); > $template->param('previousTitle' => $dataBiblioPaging->{'title'}) if ($dataBiblioPaging); > } > # Next biblio > if ($paging{'next'}->{biblionumber}) { >- $next = 'opac-detail.pl?biblionumber=' . $paging{'next'}->{biblionumber}; >+ $next = 'opac-detail.pl?biblionumber=' . $paging{'next'}->{biblionumber} . '&query_desc=' . $query->param('query_desc'); > $dataBiblioPaging = GetBiblioData($paging{'next'}->{biblionumber}); > $template->param('nextTitle' => $dataBiblioPaging->{'title'}) if ($dataBiblioPaging); > } >-- >1.7.2.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 10704
:
20216
|
20218
|
20459