Bugzilla – Attachment 172753 Details for
Bug 35570
Add a generic master form in ILL
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 35570: Do not unbless iterator
Bug-35570-Do-not-unbless-iterator.patch (text/plain), 1.58 KB, created by
Tomás Cohen Arazi (tcohen)
on 2024-10-14 18:02:01 UTC
(
hide
)
Description:
Bug 35570: Do not unbless iterator
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2024-10-14 18:02:01 UTC
Size:
1.58 KB
patch
obsolete
>From 66f3691d18cef4804d990bfd51b9b7d0e1816829 Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Mon, 14 Oct 2024 11:36:22 -0300 >Subject: [PATCH] Bug 35570: Do not unbless iterator > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> >--- > Koha/ILL/Backend/Standard.pm | 12 ++++++------ > 1 file changed, 6 insertions(+), 6 deletions(-) > >diff --git a/Koha/ILL/Backend/Standard.pm b/Koha/ILL/Backend/Standard.pm >index ee31397f240..8696b322070 100644 >--- a/Koha/ILL/Backend/Standard.pm >+++ b/Koha/ILL/Backend/Standard.pm >@@ -355,18 +355,18 @@ sub edititem { > my $stage = $other->{stage}; > if ( !$stage || $stage eq 'init' ) { > >- my $attrs = $params->{request}->extended_attributes->unblessed; >+ my $attrs = $params->{request}->extended_attributes; > > # We need to identify which parameters are custom, and pass them > # to the template in a predefined form > my $custom_keys = []; > my $custom_vals = []; >- foreach my $attr ( @{$attrs} ) { >- if ( !$core->{ $attr->{type} } ) { >- push @{$custom_keys}, $attr->{type}; >- push @{$custom_vals}, $attr->{value}; >+ while ( my $attr = $attrs->next ) { >+ if ( !$core->{ $attr->type } ) { >+ push @{$custom_keys}, $attr->type; >+ push @{$custom_vals}, $attr->value; > } else { >- $other->{ $attr->{type} } = $attr->{value}; >+ $other->{ $attr->type } = $attr->value; > } > } > $other->{'custom_key'} = join "\0", @{$custom_keys}; >-- >2.47.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 35570
:
159942
|
159943
|
159944
|
159946
|
159947
|
160452
|
160457
|
160654
|
160655
|
160656
|
160657
|
160658
|
160659
|
160660
|
160686
|
161519
|
161520
|
161521
|
161522
|
161523
|
161524
|
162894
|
162897
|
162898
|
162899
|
162900
|
162901
|
162902
|
162903
|
162904
|
162905
|
164277
|
164278
|
164279
|
164280
|
164281
|
164282
|
164283
|
164284
|
165204
|
165205
|
165206
|
165207
|
165208
|
165209
|
165210
|
165211
|
165286
|
165287
|
165288
|
165289
|
165290
|
165291
|
165292
|
165293
|
167050
|
167051
|
171312
|
171313
|
171314
|
171315
|
171316
|
171317
|
171318
|
171319
|
171320
|
171321
|
171322
|
171323
|
172218
|
172219
|
172722
|
172723
|
172724
|
172725
|
172726
|
172727
|
172728
|
172729
|
172730
|
172731
|
172732
|
172733
|
172734
|
172735
|
172740
|
172741
|
172742
|
172743
|
172744
|
172745
|
172746
|
172747
|
172748
|
172749
|
172750
|
172751
|
172752
| 172753 |
172780
|
172809
|
172811
|
173916
|
173917
|
173918