From 10142e31a876381c6b095b3cabf0239063cccf72 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Thu, 29 Mar 2018 10:44:59 -0300 Subject: [PATCH] Bug 20428: Make Koha::UploadedFile use the new config entry for tmp files This patch makes Koha::UploadedFile->temporary_directory try to use the new configuration entry. It will fallback to File::Spec->tmpdir otherwise. --- Koha/UploadedFile.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Koha/UploadedFile.pm b/Koha/UploadedFile.pm index 9df1178608..2e828aec32 100644 --- a/Koha/UploadedFile.pm +++ b/Koha/UploadedFile.pm @@ -168,7 +168,9 @@ Returns root directory for temporary storage sub temporary_directory { my ( $class ) = @_; - return File::Spec->tmpdir; + return (C4::Context->config('upload_tmp_path')) + ? C4::Context->config('upload_tmp_path') + : File::Spec->tmpdir; } =head3 _type -- 2.16.3