Bugzilla – Attachment 65700 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), 738 bytes, created by
Julian Maurice
on 2017-08-09 09:33:38 UTC
(
hide
)
Description:
Bug 18785: Force scalar context in Koha::Subscription::biblio
Filename:
MIME Type:
Creator:
Julian Maurice
Created:
2017-08-09 09:33:38 UTC
Size:
738 bytes
patch
obsolete
>From 919b3d849bc7bead863fd6310521c0ff50ec850b 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 > >--- > Koha/Subscription.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/Koha/Subscription.pm b/Koha/Subscription.pm >index 0398763787..2a793e5946 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.11.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 18785
:
64197
|
65700
|
67383
|
67384
|
67764
|
67765