Bugzilla – Attachment 46450 Details for
Bug 15398
Batch patron deletion/anonymization issue page: Restricted dropdown menu
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 15398: Hide Staff members only in the patron deletion/anonymization tool
Bug-15398-Hide-Staff-members-only-in-the-patron-de.patch (text/plain), 1.97 KB, created by
Kyle M Hall (khall)
on 2016-01-08 17:41:42 UTC
(
hide
)
Description:
Bug 15398: Hide Staff members only in the patron deletion/anonymization tool
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2016-01-08 17:41:42 UTC
Size:
1.97 KB
patch
obsolete
>From f3cb0b0b41e4be44166015198f3cb8f01ee6bff2 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Tue, 5 Jan 2016 15:41:36 +0000 >Subject: [PATCH] Bug 15398: Hide Staff members only in the patron > deletion/anonymization tool > >On bug 9076 (commit 568a4c1230ee9a4002181fcab2c083faf6c323a9), the plan >was to hide the Staff members from the tool. >But the test was wrong, it was done on the category_code instead of the >category_type value. > >Test plan: >1/ Create a category 'Student' which is not part of the Staff >(category_code=S, category_type!=S) >2/ Create a staff category (category_type=S) >3/ Go on the deletion/anonymization tool (tools/cleanborrowers.pl) and >confirm that the category Student category is displayed in the dropdown >list. > >Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com> >Work as described, no errors. > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> > >http://bugs.koha-community.org/show_bug.cgi?id=15308 >--- > koha-tmpl/intranet-tmpl/prog/en/modules/tools/cleanborrowers.tt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/cleanborrowers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/cleanborrowers.tt >index 7de7652..e7fdcfc 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/cleanborrowers.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/cleanborrowers.tt >@@ -82,7 +82,7 @@ > <select id="borrower_categorycode" name="borrower_categorycode"> > <option value="" selected="selected">Any</option> > [% FOREACH bc IN borrower_categorycodes %] >- [% UNLESS ( bc.categorycode == 'S' || bc.category_type == 'S' ) %] >+ [% UNLESS bc.category_type == 'S' %] > <option value="[% bc.categorycode %]">[% bc.description %]</option> > [% END %] > [% END %] >-- >2.1.4
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 15398
:
46270
|
46272
| 46450