From 5b477bdbdd196ba475d5d5adad71a0b42bfbbca0 Mon Sep 17 00:00:00 2001
From: Tomas Cohen Arazi <tomascohen@theke.io>
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 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Koha/UploadedFile.pm b/Koha/UploadedFile.pm
index 9df1178608..b7efa85cde 100644
--- a/Koha/UploadedFile.pm
+++ b/Koha/UploadedFile.pm
@@ -168,7 +168,7 @@ Returns root directory for temporary storage
sub temporary_directory {
my ( $class ) = @_;
- return File::Spec->tmpdir;
+ return C4::Context->config('upload_tmp_path') || File::Spec->tmpdir;
}
=head3 _type
--
2.17.0