Bugzilla – Attachment 104519 Details for
Bug 20443
Move C4::Members::Attributes to Koha namespace
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 20443: (follow-up) Remove C4::Members::AttributeTypes
Bug-20443-follow-up-Remove-C4MembersAttributeTypes.patch (text/plain), 1.02 KB, created by
Jonathan Druart
on 2020-05-07 15:05:56 UTC
(
hide
)
Description:
Bug 20443: (follow-up) Remove C4::Members::AttributeTypes
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2020-05-07 15:05:56 UTC
Size:
1.02 KB
patch
obsolete
>From 185d88bac6745f7b76799600f6fd0a16cf09ac93 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Thu, 7 May 2020 17:05:32 +0200 >Subject: [PATCH] Bug 20443: (follow-up) Remove C4::Members::AttributeTypes > >--- > members/memberentry.pl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/members/memberentry.pl b/members/memberentry.pl >index be5cb22241..cfdc06032e 100755 >--- a/members/memberentry.pl >+++ b/members/memberentry.pl >@@ -406,7 +406,7 @@ if ($op eq 'save' || $op eq 'insert'){ > eval {$attribute->check_unique_id}; > if ( $@ ) { > push @errors, "ERROR_extended_unique_id_failed"; >- my $attr_type = Koha::Patron::Attribute::Types->find($attr->code); >+ my $attr_type = Koha::Patron::Attribute::Types->find($attr->{code}); > $template->param( > ERROR_extended_unique_id_failed_code => $attr->{code}, > ERROR_extended_unique_id_failed_value => $attr->{attribute}, >-- >2.20.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 20443
:
101122
|
101123
|
101124
|
101125
|
101126
|
101127
|
101128
|
101129
|
101130
|
101131
|
101132
|
101133
|
101134
|
101135
|
101136
|
101137
|
101138
|
101139
|
101140
|
101141
|
101142
|
101143
|
101144
|
101145
|
101146
|
101147
|
101148
|
101149
|
101150
|
101209
|
101210
|
101211
|
101212
|
101213
|
101214
|
101215
|
101216
|
101217
|
101218
|
101219
|
101220
|
101221
|
101222
|
101223
|
101224
|
101225
|
101226
|
101227
|
101228
|
101229
|
101230
|
101231
|
101232
|
101233
|
101234
|
101235
|
101236
|
101237
|
101472
| 104519