From: Roland Häder Date: Thu, 11 May 2023 23:37:40 +0000 (+0200) Subject: Continued: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=831de84da100b3f370d9b18034cf5db573d9f1f5;p=friendica.git Continued: - it is $this->config now (ops) Signed-off-by: Roland Häder --- 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)) {