From 831de84da100b3f370d9b18034cf5db573d9f1f5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Fri, 12 May 2023 01:37:40 +0200 Subject: [PATCH] Continued: - it is $this->config now (ops) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- src/Database/Database.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Database/Database.php b/src/Database/Database.php index 9af94c5dc2..5dfed7985b 100644 --- a/src/Database/Database.php +++ b/src/Database/Database.php @@ -339,8 +339,8 @@ class Database return; } - $watchlist = explode(',', $this->configCache->get('system', 'db_log_index_watch')); - $blacklist = explode(',', $this->configCache->get('system', 'db_log_index_blacklist')); + $watchlist = explode(',', $this->config->get('system', 'db_log_index_watch')); + $blacklist = explode(',', $this->config->get('system', 'db_log_index_blacklist')); while ($row = $this->fetch($r)) { if ((intval($this->config->get('system', 'db_loglimit_index')) > 0)) { -- 2.39.5