Bugzilla – Attachment 191612 Details for
Bug 40777
500 Error: Something went wrong when loading the table Should Exit Cleanly
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 40777: Flatten arrays
Bug-40777-Flatten-arrays.patch (text/plain), 991 bytes, created by
Victor Grousset/tuxayo
on 2026-01-18 14:44:32 UTC
(
hide
)
Description:
Bug 40777: Flatten arrays
Filename:
MIME Type:
Creator:
Victor Grousset/tuxayo
Created:
2026-01-18 14:44:32 UTC
Size:
991 bytes
patch
obsolete
>From 8410d360d7e525e63b50f8054583755e36a56d5b Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Fri, 14 Nov 2025 13:53:15 +0100 >Subject: [PATCH] Bug 40777: Flatten arrays > >Signed-off-by: David Nind <david@davidnind.com> >Signed-off-by: Victor Grousset/tuxayo <victor@tuxayo.net> >--- > catalogue/detail.pl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/catalogue/detail.pl b/catalogue/detail.pl >index 5f9416fc50..05a2d14140 100755 >--- a/catalogue/detail.pl >+++ b/catalogue/detail.pl >@@ -596,7 +596,7 @@ if ( $query->param('audit') ) { > my $audit_errors = Koha::Database::DataInconsistency->for_biblio($biblio); > $template->param( > auditing => 1, >- audit_errors => [ map { scalar @{ $audit_errors->{$_} } ? $audit_errors->{$_} : () } keys %$audit_errors ], >+ audit_errors => [ map { scalar @{ $audit_errors->{$_} } ? @{ $audit_errors->{$_} } : () } keys %$audit_errors ], > ); > } > >-- >2.52.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 40777
:
187526
|
187527
|
187528
|
188222
|
188223
|
188224
|
188225
|
188226
|
188227
|
189598
|
190261
|
190262
|
190263
|
190264
|
190265
|
190266
|
190267
|
190268
|
190269
|
190270
|
190884
|
190885
|
191603
|
191604
|
191605
|
191606
|
191607
|
191608
|
191609
|
191610
|
191611
| 191612 |
191613
|
191614
|
191615