mirror of
https://github.com/friendica/friendica
synced 2025-04-27 13:50:12 +00:00
Rename system config value to db_log_index_denylist
This commit is contained in:
parent
34463f37e4
commit
530ff51898
2 changed files with 5 additions and 5 deletions
|
@ -319,7 +319,7 @@ class Database
|
|||
}
|
||||
|
||||
$watchlist = explode(',', $this->configCache->get('system', 'db_log_index_watch'));
|
||||
$blacklist = explode(',', $this->configCache->get('system', 'db_log_index_blacklist'));
|
||||
$denylist = explode(',', $this->configCache->get('system', 'db_log_index_denylist'));
|
||||
|
||||
while ($row = $this->fetch($r)) {
|
||||
if ((intval($this->configCache->get('system', 'db_loglimit_index')) > 0)) {
|
||||
|
@ -333,7 +333,7 @@ class Database
|
|||
$log = true;
|
||||
}
|
||||
|
||||
if (in_array($row['key'], $blacklist) || ($row['key'] == "")) {
|
||||
if (in_array($row['key'], $denylist) || ($row['key'] == "")) {
|
||||
$log = false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue