From acdce3070c455f1c9e46db73b873322af0e5a8fb Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Fri, 10 Apr 2020 19:36:41 -0300 Subject: [PATCH] Bug 25109: Add entry in about.pl about the configuration lockdir entry --- about.pl | 6 ++++++ koha-tmpl/intranet-tmpl/prog/en/modules/about.tt | 7 +++++++ 2 files changed, 13 insertions(+) diff --git a/about.pl b/about.pl index f0ae48de97..85e55cb0c0 100755 --- a/about.pl +++ b/about.pl @@ -209,6 +209,12 @@ if ( ! defined C4::Context->config('log4perl_conf') ) { } } +if ( ! defined C4::Context->config('lockdir') ) { + push @xml_config_warnings, { + error => 'lockdir_entry_missing' + } +} + if ( ! defined C4::Context->config('upload_path') ) { if ( Koha::Config::SysPrefs->find('OPACBaseURL')->value ) { # OPACBaseURL seems to be set diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt index ef60aed2b7..341a618232 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt @@ -359,6 +359,13 @@ add it, pointing to the log4perl.conf file for your Koha instance. + [% ELSIF config_entry.error == 'lockdir_entry_missing' %] + + Warning + You are missing the <lockdir> entry in your koha-conf.xml file. Please + add it, pointing to your Koha instance's lock dir. + + [% ELSIF config_entry.error == 'uploadpath_entry_missing' %] Warning -- 2.26.0