Bugzilla – Attachment 81401 Details for
Bug 21634
"Circulation" option is lost when viewing patron's logs
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 21634: Keep "circulation" module selected when viewing patron's logs
Bug-21634-Keep-circulation-module-selected-when-vi.patch (text/plain), 2.32 KB, created by
Katrin Fischer
on 2018-10-28 11:52:52 UTC
(
hide
)
Description:
Bug 21634: Keep "circulation" module selected when viewing patron's logs
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2018-10-28 11:52:52 UTC
Size:
2.32 KB
patch
obsolete
>From 611a09653bbbbd051dcb530b65dc300e22a6d429 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Tue, 23 Oct 2018 10:15:11 -0300 >Subject: [PATCH] Bug 21634: Keep "circulation" module selected when viewing > patron's logs > >To recreate: >- View a patron detail page >- Click "Modification log" >- Notice that the url has "modules=MEMBERS&modules=circulation", but >the "Circulation" option is not selected in the "Modules" dropdown list. >This is because of uppercase vs lowercase. > >The bug: >- Right after you click "Modification log" you will see all the >"members" and "circulation" logs >- Submit the form without changing any input/select from the form >=> Now you only see the "members" logs. > >Test plan: >- Apply the patch >- Click "Modification log" >- Notice that the url now contains "modules=MEMBERS&modules=CIRCULATION" >- Submit the form without changing any input/select from the form >=> Now you have the "members" and "circulation" modules selected. > >Signed-off-by: Pierre-Marc Thibault <pierre-marc.thibault@inLibro.com> > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc >index 25592900a8..a16ca2bf9b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc >@@ -98,7 +98,7 @@ > [% END %] > [% END %] > [% IF ( CAN_user_tools_view_system_logs ) %] >- [% IF ( logview ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/tools/viewlog.pl?do_it=1&modules=MEMBERS&modules=circulation&object=[% patron.borrowernumber | uri %]&src=circ">Modification log</a></li> >+ [% IF ( logview ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/tools/viewlog.pl?do_it=1&modules=MEMBERS&modules=CIRCULATION&object=[% patron.borrowernumber | uri %]&src=circ">Modification log</a></li> > [% END %] > [% IF CAN_user_borrowers_edit_borrowers %] > [% IF ( sentnotices ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/members/notices.pl?borrowernumber=[% patron.borrowernumber | uri %]">Notices</a></li> >-- >2.11.0
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 21634
:
81023
|
81335
|
81336
| 81401