Bugzilla – Attachment 88689 Details for
Bug 22723
Syntax error on confess call in Koha/MetadataRecord/Authority.pm
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22723: Correct syntax error on confess call in Koha/MetadataRecord/Authority.pm
Bug-22723-Correct-syntax-error-on-confess-call-in-.patch (text/plain), 1.51 KB, created by
Martin Renvoize (ashimema)
on 2019-04-25 07:00:30 UTC
(
hide
)
Description:
Bug 22723: Correct syntax error on confess call in Koha/MetadataRecord/Authority.pm
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2019-04-25 07:00:30 UTC
Size:
1.51 KB
patch
obsolete
>From 37bea72e0a427b32bf0d624ece2282b8b5b489e7 Mon Sep 17 00:00:00 2001 >From: Fridolin Somers <fridolin.somers@biblibre.com> >Date: Wed, 17 Apr 2019 13:58:57 +0200 >Subject: [PATCH] Bug 22723: Correct syntax error on confess call in > Koha/MetadataRecord/Authority.pm > >In Koha/MetadataRecord/Authority.pm the call to confess is missing string quotes. > >It may generates this error : > >Can't locate object method "confess" via package "Empty String at /usr/share/perl5/MARC/File/XML.pm line 448. >" (perhaps you forgot to load "Empty String at /usr/share/perl5/MARC/File/XML.pm line 448. >"?) at /home/koha/src/Koha/MetadataRecord/Authority.pm line 186. > >Simply missing double quotes. >Also missing use Carp to call confess. > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > Koha/MetadataRecord/Authority.pm | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > >diff --git a/Koha/MetadataRecord/Authority.pm b/Koha/MetadataRecord/Authority.pm >index f9eedf8dcc..062d19c961 100644 >--- a/Koha/MetadataRecord/Authority.pm >+++ b/Koha/MetadataRecord/Authority.pm >@@ -33,6 +33,7 @@ Authority data. > > use strict; > use warnings; >+use Carp; > use C4::Context; > use MARC::Record; > use MARC::File::XML; >@@ -183,7 +184,7 @@ sub get_all_authorities_iterator { > ) > ); > }; >- confess $@ if ($@); >+ confess "$@" if ($@); > $record->encoding('UTF-8'); > > # I'm not sure why we don't use the authtypecode from the database, >-- >2.20.1
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 22723
:
88187
|
88188
|
88616
| 88689