mirror of
https://github.com/friendica/friendica
synced 2025-04-26 17:10:10 +00:00
Replace *.ini.php by *.config.php in comments
This commit is contained in:
parent
98d90e131d
commit
c964e193b9
6 changed files with 20 additions and 13 deletions
|
@ -65,13 +65,13 @@ class JITConfigAdapter extends BaseObject implements IConfigAdapter
|
|||
$this->in_db[$cat][$k] = true;
|
||||
return $value;
|
||||
} elseif (isset($a->config[$cat][$k])) {
|
||||
// Assign the value (mostly) from config/local.ini.php file to the cache
|
||||
// Assign the value (mostly) from config/local.config.php file to the cache
|
||||
$this->cache[$cat][$k] = $a->config[$cat][$k];
|
||||
$this->in_db[$cat][$k] = false;
|
||||
|
||||
return $a->config[$cat][$k];
|
||||
} elseif (isset($a->config[$k])) {
|
||||
// Assign the value (mostly) from config/local.ini.php file to the cache
|
||||
// Assign the value (mostly) from config/local.config.php file to the cache
|
||||
$this->cache[$k] = $a->config[$k];
|
||||
$this->in_db[$k] = false;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue