]> 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>
Mon, 23 Jun 2025 20:54:03 +0000 (22:54 +0200)
- it is $this->config now (ops)

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

index 21088858cff432d2c873ea81b81c76166cf9906b..eea9a8c2926ad01ff9e46551e03140276156f7b3 100644 (file)
@@ -335,8 +335,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)) {