From 2172c37837c72024d6f8481b434779ebf56a98fc Mon Sep 17 00:00:00 2001 From: Victor Grousset/tuxayo Date: Thu, 8 Feb 2024 04:56:47 +0100 Subject: [PATCH] Bug 31286: (QA follow-up): tidy up code Signed-off-by: Katrin Fischer --- Koha/Exporter/Record.pm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Koha/Exporter/Record.pm b/Koha/Exporter/Record.pm index 974689eb92..dd9d22293c 100644 --- a/Koha/Exporter/Record.pm +++ b/Koha/Exporter/Record.pm @@ -116,12 +116,12 @@ sub _get_authority_for_export { } sub _get_biblio_for_export { - my ($params) = @_; - my $biblionumber = $params->{biblionumber}; - my $itemnumbers = $params->{itemnumbers}; - my $export_items = $params->{export_items} // 1; + my ($params) = @_; + my $biblionumber = $params->{biblionumber}; + my $itemnumbers = $params->{itemnumbers}; + my $export_items = $params->{export_items} // 1; my $only_export_items_for_branches = $params->{only_export_items_for_branches}; - my $embed_see_from_headings = $params->{embed_see_from_headings}; + my $embed_see_from_headings = $params->{embed_see_from_headings}; my $biblio = Koha::Biblios->find($biblionumber); my $record = eval { $biblio->metadata->record }; -- 2.20.1