Bugzilla – Attachment 86428 Details for
Bug 20563
ILL request list gives no indication of source and/or target
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 20563: (follow-up) Fix rebasing bug
Bug-20563-follow-up-Fix-rebasing-bug.patch (text/plain), 1.06 KB, created by
Josef Moravec
on 2019-03-11 08:49:56 UTC
(
hide
)
Description:
Bug 20563: (follow-up) Fix rebasing bug
Filename:
MIME Type:
Creator:
Josef Moravec
Created:
2019-03-11 08:49:56 UTC
Size:
1.06 KB
patch
obsolete
>From 65e8198090b18e1ed2d7a896eb566a254a249016 Mon Sep 17 00:00:00 2001 >From: Andrew Isherwood <andrew.isherwood@ptfs-europe.com> >Date: Thu, 29 Nov 2018 12:26:33 +0000 >Subject: [PATCH] Bug 20563: (follow-up) Fix rebasing bug > >Fix erroneous curly brackets > >Signed-off-by: Josef Moravec <josef.moravec@gmail.com> >--- > ill/ill-requests.pl | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/ill/ill-requests.pl b/ill/ill-requests.pl >index d6be5c89b2..1598ea862c 100755 >--- a/ill/ill-requests.pl >+++ b/ill/ill-requests.pl >@@ -247,10 +247,10 @@ if ( $backends_available ) { > } > catch { > my $error; >- if ( $_->isa( 'Koha::Exceptions::Ill::NoTargetEmail' ) ) { >+ if ( ref($_) eq 'Koha::Exceptions::Ill::NoTargetEmail' ) { > $error = 'no_target_email'; > } >- elsif ( $_->isa( 'Koha::Exceptions::Ill::NoLibraryEmail' ) ) { >+ elsif ( ref($_) eq 'Koha::Exceptions::Ill::NoLibraryEmail' ) { > $error = 'no_library_email'; > } > else { >-- >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 20563
:
74152
|
74153
|
75657
|
79523
|
79715
|
79716
|
80603
|
82166
|
82167
|
82511
|
82512
|
82734
|
84695
|
84696
|
84697
|
84698
|
86376
|
86377
|
86378
|
86427
| 86428 |
86429
|
86430
|
86431