From c3dd223dc4baa418db98bfcea3bdff46a025f90a Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Wed, 18 Aug 2021 12:12:36 +0200 Subject: [PATCH] check if array key '__disabled__' is set --- views/bootstrap/class.Settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/bootstrap/class.Settings.php b/views/bootstrap/class.Settings.php index c1f10e374..90af30d5c 100644 --- a/views/bootstrap/class.Settings.php +++ b/views/bootstrap/class.Settings.php @@ -532,7 +532,7 @@ if(($kkk = $this->callHook('getFullSearchEngine')) && is_array($kkk)) if($this->hasHook('processConfig')) $extconf = $this->callHook('processConfig', $extname, $extconf); if($extconf['config']) { - $this->showRawConfigHeadline("".'_extensions[$extname]["__disable__"] ? '1' : '').'" /> '.$extconf['title'].''); + $this->showRawConfigHeadline("".'_extensions[$extname]["__disable__"] ? '1' : '').'" />_extensions[$extname]["__disable__"] ? ' disabled' : ' enabled').'"> '.$extconf['title'].''); foreach($extconf['config'] as $confkey=>$conf) { ob_start(); switch($conf['type']) {