Bugzilla – Attachment 70696 Details for
Bug 20001
ILL: Adding a 'new request' from OPAC is not possible
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 20001: Fix confusion between array and arrayref
Bug-20001-Fix-confusion-between-array-and-arrayref.patch (text/plain), 836 bytes, created by
Jonathan Druart
on 2018-01-18 15:50:04 UTC
(
hide
)
Description:
Bug 20001: Fix confusion between array and arrayref
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2018-01-18 15:50:04 UTC
Size:
836 bytes
patch
obsolete
>From 4892df5a0c876bd10e42d0ebdcb906cbe71168c1 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Thu, 18 Jan 2018 12:49:12 -0300 >Subject: [PATCH] Bug 20001: Fix confusion between array and arrayref > >Illrequest->available_backends always returned only 1 element >--- > Koha/Illrequest.pm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/Koha/Illrequest.pm b/Koha/Illrequest.pm >index b6585c23ab..99b97bdbe4 100644 >--- a/Koha/Illrequest.pm >+++ b/Koha/Illrequest.pm >@@ -478,8 +478,8 @@ Return a list of available backends. > > sub available_backends { > my ( $self ) = @_; >- my @backends = $self->_config->available_backends; >- return \@backends; >+ my $backends = $self->_config->available_backends; >+ return $backends; > } > > =head3 available_actions >-- >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 20001
:
70696
|
70700
|
70701
|
70737