Bugzilla – Attachment 135468 Details for
Bug 27697
Opening bibliographic record page prepopulates search bar text
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 27697: Only preopulate search when we have found a single biblio
Bug-27697-Only-preopulate-search-when-we-have-foun.patch (text/plain), 3.03 KB, created by
Jonathan Druart
on 2022-05-31 07:02:35 UTC
(
hide
)
Description:
Bug 27697: Only preopulate search when we have found a single biblio
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2022-05-31 07:02:35 UTC
Size:
3.03 KB
patch
obsolete
>From 379676063185d9b3e09cf072154ddcd58ce45aea Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Wed, 18 May 2022 15:08:39 +0000 >Subject: [PATCH] Bug 27697: Only preopulate search when we have found a single > biblio > >This patch uses the url parameter we created in 23475 to determine whether >we should populate the search bar or not > >Note - a bookmark with this param will still populate search term with last search > >To test: >1 - Search staff client for 'cat' >2 - Browse to a patrons checkouts and click on a title, or just go directly to a details page: > http://localhost:8081/cgi-bin/koha/catalogue/detail.pl?biblionumber=2850 >3 - Search bar says 'cat' >4 - Apply patch >5 - Repeat 1-2 >6 - Search bar is not populated >7 - Search "dalek war box set" or a term that finds a single record in your instance >8 - Search bar is populated >9 - Note url like: http://localhost:8081/cgi-bin/koha/catalogue/detail.pl?biblionumber=2850&found1=1 > >Signed-off-by: David Nind <david@davidnind.com> > >Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >--- > catalogue/detail.pl | 2 ++ > .../prog/en/modules/catalogue/detail.tt | 14 ++++++++------ > 2 files changed, 10 insertions(+), 6 deletions(-) > >diff --git a/catalogue/detail.pl b/catalogue/detail.pl >index 29b6167f612..502963f8d65 100755 >--- a/catalogue/detail.pl >+++ b/catalogue/detail.pl >@@ -619,6 +619,8 @@ if ( C4::Context->preference('UseCourseReserves') ) { > $template->param( course_reserves => $course_reserves ); > } > >+$template->param(found1 => $query->param('found1') ); >+ > $template->param(biblio => $biblio); > > output_html_with_http_headers $query, $cookie, $template->output; >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt >index 957882603aa..1be6ee679a8 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt >@@ -1405,12 +1405,14 @@ Note that permanent location is a code, and location may be an authval. > [% END %] > }); > >- $(document).ready(function() { >- var search_index = localStorage.getItem("cat_search_pulldown_selection"); >- var search_value = localStorage.getItem("searchbox_value"); >- if ( search_index ){ $('#cat-search-block select.advsearch').val(search_index)}; >- if ( search_value ){ $('#cat-search-block #search-form').val(search_value)}; >- }); >+ [% IF (found1) %] >+ $(document).ready(function() { >+ var search_index = localStorage.getItem("cat_search_pulldown_selection"); >+ var search_value = localStorage.getItem("searchbox_value"); >+ if ( search_index ){ $('#cat-search-block select.advsearch').val(search_index)}; >+ if ( search_value ){ $('#cat-search-block #search-form').val(search_value)}; >+ }); >+ [% END %] > </script> > [% END %] > [% INCLUDE 'intranet-bottom.inc' %] >-- >2.25.1
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 27697
:
135146
|
135457
| 135468