From 37bea72e0a427b32bf0d624ece2282b8b5b489e7 Mon Sep 17 00:00:00 2001 From: Fridolin Somers 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 Signed-off-by: Martin Renvoize --- 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