Bugzilla – Attachment 124181 Details for
Bug 28883
Koha::Objects->_new_from_dbic doesn't work correctly in list context
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 28883: Fix wrong list context calls
Bug-28883-Fix-wrong-list-context-calls.patch (text/plain), 799 bytes, created by
Jonathan Druart
on 2021-08-27 13:13:57 UTC
(
hide
)
Description:
Bug 28883: Fix wrong list context calls
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2021-08-27 13:13:57 UTC
Size:
799 bytes
patch
obsolete
>From 699de451795095fd5d23bfa4b1dd0390d5fef89c Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Fri, 27 Aug 2021 15:13:31 +0200 >Subject: [PATCH] Bug 28883: Fix wrong list context calls > >--- > catalogue/detail.pl | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > >diff --git a/catalogue/detail.pl b/catalogue/detail.pl >index 0cb204ced9d..a547e16bd39 100755 >--- a/catalogue/detail.pl >+++ b/catalogue/detail.pl >@@ -533,8 +533,7 @@ if (C4::Context->preference("FRBRizeEditions")==1) { > } > > if ( C4::Context->preference("LocalCoverImages") == 1 ) { >- my $images = $biblio->cover_images; >- $template->param( localimages => $biblio->cover_images ); >+ $template->param( localimages => scalar $biblio->cover_images ); > } > > # HTML5 Media >-- >2.25.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 28883
:
123976
|
123977
|
123980
|
123981
|
123992
|
123993
|
123994
|
123995
| 124181 |
124420