Bugzilla – Attachment 67765 Details for
Bug 18785
Add Koha::Subscription::biblio
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 18785: Force scalar context in Koha::Subscription::biblio
Bug-18785-Force-scalar-context-in-KohaSubscription.patch (text/plain), 861 bytes, created by
Nick Clemens (kidclamp)
on 2017-10-07 00:27:10 UTC
(
hide
)
Description:
Bug 18785: Force scalar context in Koha::Subscription::biblio
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2017-10-07 00:27:10 UTC
Size:
861 bytes
patch
obsolete
>From 0f30e7a0b59c3009d8aa86637947252964817e22 Mon Sep 17 00:00:00 2001 >From: Julian Maurice <julian.maurice@biblibre.com> >Date: Wed, 9 Aug 2017 11:30:00 +0200 >Subject: [PATCH] Bug 18785: Force scalar context in Koha::Subscription::biblio > >Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> > >Signed-off-by: Nick Clemens <nick@bywatersolutions.com> >--- > Koha/Subscription.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/Koha/Subscription.pm b/Koha/Subscription.pm >index 0398763..2a793e5 100644 >--- a/Koha/Subscription.pm >+++ b/Koha/Subscription.pm >@@ -45,7 +45,7 @@ Returns the biblio linked to this subscription as a Koha::Biblio object > sub biblio { > my ($self) = @_; > >- return Koha::Biblios->find($self->biblionumber); >+ return scalar Koha::Biblios->find($self->biblionumber); > } > > =head3 type >-- >2.1.4
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 18785
:
64197
|
65700
|
67383
|
67384
|
67764
| 67765