Bugzilla – Attachment 73076 Details for
Bug 19892
Replace numbersphr variable with Koha.Preference('OPACNumbersPreferPhrase') in OPAC
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19892: Replace numbersphr variable with Koha.Preference('OPACNumbersPreferPhrase') in OPAC
Bug-19892-Replace-numbersphr-variable-with-KohaPre.patch (text/plain), 3.44 KB, created by
Katrin Fischer
on 2018-03-18 07:56:11 UTC
(
hide
)
Description:
Bug 19892: Replace numbersphr variable with Koha.Preference('OPACNumbersPreferPhrase') in OPAC
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2018-03-18 07:56:11 UTC
Size:
3.44 KB
patch
obsolete
>From 6729490f188df1acd2194aa559b42a830238202e Mon Sep 17 00:00:00 2001 >From: Charlotte Cordwell <charlotte.cordwell123@gmail.com> >Date: Thu, 18 Jan 2018 01:29:05 +0000 >Subject: [PATCH] Bug 19892: Replace numbersphr variable with > Koha.Preference('OPACNumbersPreferPhrase') in OPAC > >Test Case >1) Check that the following files have been changed properly. >opac/opac-search.pl > opac/opac-main.pl > koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-advsearch.tt > >2)Apply bug >3) Check that there are no differences in behaviour as a result of the patch. > >Signed-off-by: Roch D'Amour <roch.damour@inlibro.com> > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-advsearch.tt | 4 ++-- > opac/opac-main.pl | 4 ---- > opac/opac-search.pl | 3 --- > 3 files changed, 2 insertions(+), 9 deletions(-) > >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-advsearch.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-advsearch.tt >index 1705184feb..f5308ea7e2 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-advsearch.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-advsearch.tt >@@ -54,7 +54,7 @@ > [% IF ( expanded_options ) %] > <option value="ti,phr"> Title phrase</option> > <option value="se,wrdl">Series title</option> >- [% IF ( numbersphr) %] >+ [% IF ( Koha.Preference('OPACNumbersPreferPhrase') ) %] > <option value="callnum,phr">Call number</option> > [% ELSE %] > <option value="callnum">Call number</option> >@@ -79,7 +79,7 @@ > <option value="pb,wrdl">Publisher</option> > <option value="pl,wrdl">Publisher location</option> > [% IF ( expanded_options ) %] >- [% IF ( numbersphr) %] >+ [% IF ( Koha.Preference('OPACNumbersPreferPhrase') ) %] > <option value="sn,phr">Standard number</option> > [% ELSE %] > <option value="sn">Standard number</option> >diff --git a/opac/opac-main.pl b/opac/opac-main.pl >index 723dced66c..2398b6a4aa 100755 >--- a/opac/opac-main.pl >+++ b/opac/opac-main.pl >@@ -102,8 +102,4 @@ if (C4::Context->preference('GoogleIndicTransliteration')) { > $template->param('GoogleIndicTransliteration' => 1); > } > >-if (C4::Context->preference('OPACNumbersPreferPhrase')) { >- $template->param('numbersphr' => 1); >-} >- > output_html_with_http_headers $input, $cookie, $template->output; >diff --git a/opac/opac-search.pl b/opac/opac-search.pl >index f06e40a6fa..82a0319b82 100755 >--- a/opac/opac-search.pl >+++ b/opac/opac-search.pl >@@ -380,9 +380,6 @@ if ( $template_type && $template_type eq 'advsearch' ) { > } > } > >- if (C4::Context->preference('OPACNumbersPreferPhrase')) { >- $template->param('numbersphr' => 1); >- } > > output_html_with_http_headers $cgi, $cookie, $template->output; > exit; >-- >2.14.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 19892
:
70660
|
73061
|
73076
|
73338
|
73506
|
73507