Bugzilla – Attachment 101228 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: Fix Auth_with_ldap.t
Bug-20443-Fix-Authwithldapt.patch (text/plain), 1.11 KB, created by
Jonathan Druart
on 2020-03-20 15:06:11 UTC
(
hide
)
Description:
Bug 20443: Fix Auth_with_ldap.t
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2020-03-20 15:06:11 UTC
Size:
1.11 KB
patch
obsolete
>From 7786855d34d4ee81e53d1908790c6cd60c03b780 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Mon, 29 Apr 2019 11:49:04 -0400 >Subject: [PATCH] Bug 20443: Fix Auth_with_ldap.t > >Must be a hashref > >Signed-off-by: Nick Clemens <nick@bywatersolutions.com> >--- > C4/Auth_with_ldap.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/C4/Auth_with_ldap.pm b/C4/Auth_with_ldap.pm >index a85369b494..0599d9fb59 100644 >--- a/C4/Auth_with_ldap.pm >+++ b/C4/Auth_with_ldap.pm >@@ -241,7 +241,7 @@ sub checkpw_ldap { > if ( $patron ) { # Should not be needed, but we are in C4::Auth LDAP... > eval { > my $attribute = Koha::Patron::Attribute->new({code => $code, attribute => $borrower{$code}}); >- $patron->extended_attributes([$attribute]); >+ $patron->extended_attributes([$attribute->unblessed]); > }; > if ($@) { # FIXME Test if Koha::Exceptions::Patron::Attribute::NonRepeatable > warn "ERROR_extended_unique_id_failed $code $borrower{$code}"; >-- >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