@@ -, +, @@ --- about.pl | 8 +++++--- koha-tmpl/intranet-tmpl/prog/en/modules/about.tt | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) --- a/about.pl +++ a/about.pl @@ -47,6 +47,7 @@ use Koha::Caches; use Koha::Config::SysPrefs; use Koha::Illrequest::Config; use Koha::SearchEngine::Elasticsearch; +use Koha::UploadedFiles; use C4::Members::Statistics; @@ -261,10 +262,11 @@ if ( ! defined C4::Context->config('upload_path') ) { } } -if ( ! defined C4::Context->config('tmp_path') ) { +if ( ! C4::Context->config('tmp_path') ) { + my $temporary_directory = Koha::UploadedFile->temporary_directory; push @xml_config_warnings, { - error => 'tmp_path_entry_missing', - effective_tmp_dir => File::Spec->tmpdir + error => 'tmp_path_missing', + effective_tmp_dir => $temporary_directory, } } --- a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt @@ -414,7 +414,7 @@ Also note that you need to properly set the OPACBaseURL preference for the file upload plugin to work. - [% ELSIF config_entry.error == 'tmp_path_entry_missing' %] + [% ELSIF config_entry.error == 'tmp_path_missing' %] Warning You are missing the <tmp_path> entry in your koha-conf.xml file. Please --