- Fix wrong variable name in Config and PConfig
namespace Friendica\Core;
/**
* @file include/Core/Config.php
- *
+ *
* @brief Contains the class with methods for system configuration
*/
global $a;
- if(! $instore) {
+ if(! $refresh) {
// Looking if the whole family isn't set
if(isset($a->config[$family])) {
if($a->config[$family] === '!<unset>!') {
global $a;
- if(! $instore) {
+ if(! $refresh) {
// Looking if the whole family isn't set
if(isset($a->config[$uid][$family])) {
if($a->config[$uid][$family] === '!<unset>!') {
dbesc($key),
dbesc($dbvalue)
);
- if($ret)
+ if($ret)
return $value;
return $ret;
}