From 22c8b8901eb9e5b14fee14a0976d5c751be74c86 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Mon, 27 Jun 2022 08:59:30 +0000 Subject: [PATCH] Bug 31053: Add Context module to Koha::Encryption Content-Type: text/plain; charset=utf-8 Test plan: perl -MKoha::Encryption -e'print Koha::Encryption->new->encrypt_hex("test");' Signed-off-by: Marcel de Rooy --- Koha/Encryption.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/Koha/Encryption.pm b/Koha/Encryption.pm index 15cd125dbe..8dbeddf1b7 100644 --- a/Koha/Encryption.pm +++ b/Koha/Encryption.pm @@ -21,6 +21,7 @@ use Modern::Perl; use base qw( Crypt::CBC ); +use C4::Context; use Koha::Exceptions; =head1 NAME -- 2.20.1