Bugzilla – Attachment 189598 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
e253e76.patch (text/plain), 889 bytes, created by
Jonathan Druart
on 2025-11-14 12:53:58 UTC
(
hide
)
Description:
Bug 40777: Flatten arrays
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2025-11-14 12:53:58 UTC
Size:
889 bytes
patch
obsolete
>From e253e761ad50843d0e9ffed71f7f954f6d1486ac 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 > >--- > catalogue/detail.pl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/catalogue/detail.pl b/catalogue/detail.pl >index ed43fde9d79..d6ff6220315 100755 >--- a/catalogue/detail.pl >+++ b/catalogue/detail.pl >@@ -543,7 +543,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.34.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 40777
:
187526
|
187527
|
187528
|
188222
|
188223
|
188224
|
188225
|
188226
|
188227
| 189598