Bugzilla – Attachment 65798 Details for
Bug 19074
Show patron category description instead of code in patron batch modification list
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19074: bugfix: Dereference correct value from Koha::Object.
Bug-19074-bugfix-Dereference-correct-value-from-Ko.patch (text/plain), 1.37 KB, created by
Alex Sassmannshausen
on 2017-08-10 11:05:24 UTC
(
hide
)
Description:
Bug 19074: bugfix: Dereference correct value from Koha::Object.
Filename:
MIME Type:
Creator:
Alex Sassmannshausen
Created:
2017-08-10 11:05:24 UTC
Size:
1.37 KB
patch
obsolete
>From e49f194fb2bd2ccc2789d684d4fca2eeebca4fe3 Mon Sep 17 00:00:00 2001 >From: Alex Sassmannshausen <alex.sassmannshausen@ptfs-europe.com> >Date: Thu, 10 Aug 2017 13:00:19 +0200 >Subject: [PATCH] Bug 19074: bugfix: Dereference correct value from > Koha::Object. > >* tools/modborrowers.pl: Dereference 'branchcode' rather than > 'value'. > >Test Plan: >- Carry out "Batch patron modification" with any number of patrons. > + Change the library. > + Hit Save. >- The library will not have been updated. >- Apply patch. >- Run same modification. >- The library will have been updated >--- > tools/modborrowers.pl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/tools/modborrowers.pl b/tools/modborrowers.pl >index 720e2a107e..105c0346b6 100755 >--- a/tools/modborrowers.pl >+++ b/tools/modborrowers.pl >@@ -148,7 +148,7 @@ if ( $op eq 'show' ) { > # Construct drop-down list values > my $branches = Koha::Libraries->search({}, { order_by => ['branchname'] })->unblessed; > my @branches_option; >- push @branches_option, { value => $_->{value}, lib => $_->{branchname} } for @$branches; >+ push @branches_option, { value => $_->{branchcode}, lib => $_->{branchname} } for @$branches; > unshift @branches_option, { value => "", lib => "" }; > my @categories_option; > push @categories_option, { value => $_->categorycode, lib => $_->description } for @patron_categories; >-- >2.13.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 19074
:
65798
|
65800
|
65806
|
65839
|
65840