From: Srdjan Date: Mon, 26 Aug 2013 05:05:07 +0000 (+1200) Subject: bug 9611: (follow-up) remove md5_base64 from imports - not used X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=7d5cf5b7e925a1e376d530f86a79673d892ac7df;p=koha.git bug 9611: (follow-up) remove md5_base64 from imports - not used RM note: Digest::MD5 is used in C4::ImportExportFramework as part of an unnecessary reimplementation of functionality supplied by File::Temp. See bug 10991 for a proposal to remove it. Signed-off-by: Bernardo Gonzalez Kriegel Signed-off-by: Kyle M Hall Signed-off-by: Galen Charlton --- diff --git a/C4/ImportExportFramework.pm b/C4/ImportExportFramework.pm index 72873f2107..f85101d070 100644 --- a/C4/ImportExportFramework.pm +++ b/C4/ImportExportFramework.pm @@ -21,7 +21,7 @@ use strict; use warnings; use XML::LibXML; use XML::LibXML::XPathContext; -use Digest::MD5 qw(md5_base64); +use Digest::MD5 qw(); use POSIX qw(strftime); use C4::Context;