Bugzilla – Attachment 67848 Details for
Bug 19440
XISBN tests should skip if XISBN returns overlimit error
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19440: Existing calls need to be done in scalar context
Bug-19440-Existing-calls-need-to-be-done-in-scalar.patch (text/plain), 1.26 KB, created by
Jonathan Druart
on 2017-10-09 18:59:06 UTC
(
hide
)
Description:
Bug 19440: Existing calls need to be done in scalar context
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2017-10-09 18:59:06 UTC
Size:
1.26 KB
patch
obsolete
>From ee49ccff6d6073ddc75d76072bf5d79e65f18a0b Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Mon, 9 Oct 2017 15:57:46 -0300 >Subject: [PATCH] Bug 19440: Existing calls need to be done in scalar context > >--- > catalogue/detail.pl | 2 +- > opac/opac-detail.pl | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > >diff --git a/catalogue/detail.pl b/catalogue/detail.pl >index 1e18a1d667..1359c0b6f8 100755 >--- a/catalogue/detail.pl >+++ b/catalogue/detail.pl >@@ -436,7 +436,7 @@ if (C4::Context->preference("virtualshelves") ) { > if (C4::Context->preference("FRBRizeEditions")==1) { > eval { > $template->param( >- XISBNS => get_xisbns($isbn) >+ XISBNS => scalar get_xisbns($isbn) > ); > }; > if ($@) { warn "XISBN Failed $@"; } >diff --git a/opac/opac-detail.pl b/opac/opac-detail.pl >index 8252e509cd..785589b75d 100755 >--- a/opac/opac-detail.pl >+++ b/opac/opac-detail.pl >@@ -893,7 +893,7 @@ if (C4::Context->preference("virtualshelves") ) { > if (C4::Context->preference("OPACFRBRizeEditions")==1) { > eval { > $template->param( >- XISBNS => get_xisbns($isbn) >+ XISBNS => scalar get_xisbns($isbn) > ); > }; > if ($@) { warn "XISBN Failed $@"; } >-- >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 19440
:
67847
| 67848