]> git.mxchange.org Git - friendica.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Thu, 11 May 2023 23:37:40 +0000 (01:37 +0200)
committerRoland Häder <roland@mxchange.org>
Wed, 17 Jan 2024 00:03:03 +0000 (01:03 +0100)
- it is $this->config now (ops)

Signed-off-by: Roland Häder <roland@mxchange.org>
src/Database/Database.php

index 9af94c5dc28af7945aadf120669decbb53685a41..5dfed7985b3a3c3c0531b6c7856224ff9d7cea44 100644 (file)
@@ -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)) {