From b200970fabd9e075209f486d99646bdd277c6648 Mon Sep 17 00:00:00 2001 From: Andrew Isherwood Date: Thu, 10 Oct 2019 15:41:58 +0100 Subject: [PATCH] Bug 23112: (follow-up) Call C4::Koha::GetAuthorisedValues In response to the problem Magnus was experiencing in comment #28 & #29 we now call GetAuthorisedValues by it's full path --- Koha/Illrequest/Logger.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/Illrequest/Logger.pm b/Koha/Illrequest/Logger.pm index e00a20ab98..45042a8ca0 100644 --- a/Koha/Illrequest/Logger.pm +++ b/Koha/Illrequest/Logger.pm @@ -211,7 +211,7 @@ sub get_request_logs { )->unblessed; # Populate a lookup table for status aliases - my $aliases = GetAuthorisedValues('ILLSTATUS'); + my $aliases = C4::Koha::GetAuthorisedValues('ILLSTATUS'); my $alias_hash; foreach my $alias(@{$aliases}) { $alias_hash->{$alias->{authorised_value}} = $alias; -- 2.11.0