mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:02:54 +00:00
Wrong variable name
This commit is contained in:
parent
fb8675f349
commit
aa92901b11
1 changed files with 1 additions and 1 deletions
|
@ -162,7 +162,7 @@ function del_config($family,$key) {
|
||||||
if(x($a->config[$family],$key))
|
if(x($a->config[$family],$key))
|
||||||
unset($a->config[$family][$key]);
|
unset($a->config[$family][$key]);
|
||||||
$ret = q("DELETE FROM `config` WHERE `cat` = '%s' AND `k` = '%s' LIMIT 1",
|
$ret = q("DELETE FROM `config` WHERE `cat` = '%s' AND `k` = '%s' LIMIT 1",
|
||||||
dbesc($cat),
|
dbesc($family),
|
||||||
dbesc($key)
|
dbesc($key)
|
||||||
);
|
);
|
||||||
return $ret;
|
return $ret;
|
||||||
|
|
Loading…
Reference in a new issue