Bugzilla – Attachment 151126 Details for
Bug 33445
Regression - Replacing authority via Z39.50 will not search for anything but the value from the existing authority
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 33445: (follow-up) Pass form values through when clicking 'Try another search'
Bug-33445-follow-up-Pass-form-values-through-when-.patch (text/plain), 4.67 KB, created by
Marcel de Rooy
on 2023-05-12 09:29:55 UTC
(
hide
)
Description:
Bug 33445: (follow-up) Pass form values through when clicking 'Try another search'
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2023-05-12 09:29:55 UTC
Size:
4.67 KB
patch
obsolete
>From 11ea3cb206bef1812fc57da5fb1628825ddfe652 Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Mon, 1 May 2023 18:31:30 +0000 >Subject: [PATCH] Bug 33445: (follow-up) Pass form values through when clicking > 'Try another search' >Content-Type: text/plain; charset=utf-8 > >We didn't include anything except the authid id in the try again form, this >patch extends to cover all the fields > >Signed-off-by: David Nind <david@davidnind.com> > >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >--- > .../modules/cataloguing/z3950_auth_search.tt | 36 +++++++++++++++++-- > 1 file changed, 34 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_auth_search.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_auth_search.tt >index 7bf4cfa9b9..007e411057 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_auth_search.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_auth_search.tt >@@ -146,7 +146,23 @@ > <br />Go to page : <input id="goto_page" name="goto_page" value="[% current_page | html %]" size="4" type="text" /><input type="submit" name="changepage_goto" class="btn btn-primary" value="Go" /> > </form> > >-<p><form method="get" action="/cgi-bin/koha/cataloguing/z3950_auth_search.pl"><input type="hidden" name="authid" value="[% authid | html %]" /><input type="submit" class="btn btn-primary" value="Try another search" /></form></p> >+ <p> >+ <form method="get" action="/cgi-bin/koha/cataloguing/z3950_auth_search.pl"> >+ <input type="hidden" id="nameany" name="nameany" value="[% nameany | html %]" /> >+ <input type="hidden" id="authorany" name="authorany" value="[% authorany | html %]" /> >+ <input type="hidden" id="authorcorp" name="authorcorp" value="[% authorcorp | html %]" /> >+ <input type="hidden" id="authorpersonal" name="authorpersonal" value="[% authorpersonal | html %]" /> >+ <input type="hidden" id="authormeetingcon" name="authormeetingcon" value="[% authormeetingcon | html %]" /> >+ <input type="hidden" id="title" name="title" value="[% title | html %]" /> >+ <input type="hidden" id="uniformtitle" name="uniformtitle" value="[% uniformtitle | html %]" /> >+ <input type="hidden" id="subject" name="subject" value="[% subject | html %]" /> >+ <input type="hidden" id="subjectsubdiv" name="subjectsubdiv" value="[% subjectsubdiv | html %]" /> >+ <input type="hidden" id="heading" name="heading" value="[% heading | html %]" /> >+ <input type="hidden" id="srchany" name="srchany" value="[% srchany | html %]" /> >+ <input type="hidden" name="authid" value="[% authid | html %]" /> >+ <input type="submit" class="btn btn-primary" value="Try another search" /> >+ </form> >+ </p> > [% ELSE %] > [% IF ( errconn ) %] > <div class="dialog alert"> >@@ -159,7 +175,23 @@ > </div> > [% END %] > <div class="dialog message">Nothing found.</div> >- <p><form method="get" action="/cgi-bin/koha/cataloguing/z3950_auth_search.pl"><input type="hidden" name="authid" value="[% authid | html %]" /><input type="submit" class="btn btn-primary" value="Try another search" /></form></p> >+ <p> >+ <form method="get" action="/cgi-bin/koha/cataloguing/z3950_auth_search.pl"> >+ <input type="hidden" id="nameany" name="nameany" value="[% nameany | html %]" /> >+ <input type="hidden" id="authorany" name="authorany" value="[% authorany | html %]" /> >+ <input type="hidden" id="authorcorp" name="authorcorp" value="[% authorcorp | html %]" /> >+ <input type="hidden" id="authorpersonal" name="authorpersonal" value="[% authorpersonal | html %]" /> >+ <input type="hidden" id="authormeetingcon" name="authormeetingcon" value="[% authormeetingcon | html %]" /> >+ <input type="hidden" id="title" name="title" value="[% title | html %]" /> >+ <input type="hidden" id="uniformtitle" name="uniformtitle" value="[% uniformtitle | html %]" /> >+ <input type="hidden" id="subject" name="subject" value="[% subject | html %]" /> >+ <input type="hidden" id="subjectsubdiv" name="subjectsubdiv" value="[% subjectsubdiv | html %]" /> >+ <input type="hidden" id="heading" name="heading" value="[% heading | html %]" /> >+ <input type="hidden" id="srchany" name="srchany" value="[% srchany | html %]" /> >+ <input type="hidden" name="authid" value="[% authid | html %]" /> >+ <input type="submit" class="btn btn-primary" value="Try another search" /> >+ </form> >+ </p> > [% END %] > > [% END %] >-- >2.30.2
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 33445
:
149504
|
149624
|
150367
|
150368
|
150419
|
150466
|
150467
|
150468
|
150469
|
150470
|
150471
|
150472
|
150473
|
150474
|
150475
|
151125
| 151126 |
151127