From 7610eacf1f872a9728d1fd4a26f441846f659ae4 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Fri, 28 Apr 2023 11:23:01 +0200 Subject: [PATCH] call hook checkConfig() which outputs messages in the right column --- views/bootstrap/class.Settings.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/views/bootstrap/class.Settings.php b/views/bootstrap/class.Settings.php index 17abc51c4..a68f7ff3c 100644 --- a/views/bootstrap/class.Settings.php +++ b/views/bootstrap/class.Settings.php @@ -730,6 +730,11 @@ if(is_writeable($settings->_configFilePath)) { if($settings->_enableLargeFileUpload && $mus2 < $mus1) { $this->warningMsg(getMLText("settings_partionsize_below_max_filesize")); } + + foreach($extmgr->getExtensionConfiguration() as $extname=>$extconf) { + if($this->hasHook('checkConfig')) + $this->callHook('checkConfig', $extname, $extconf); + } $this->columnEnd(4); $this->rowEnd(4); $this->contentEnd();