mirror of
https://github.com/friendica/friendica
synced 2025-04-25 11:50:11 +00:00
Fix undefined variables messages
This commit is contained in:
parent
c9c103bdd7
commit
58ac3532b7
2 changed files with 10 additions and 7 deletions
|
@ -159,7 +159,7 @@ class Config
|
|||
// manage array value
|
||||
$dbvalue = (is_array($value) ? serialize($value) : $dbvalue);
|
||||
|
||||
dba::update('config', array('v' => $dbvalue), array('cat' => $family, 'k' => $key), true);
|
||||
$ret = dba::update('config', array('v' => $dbvalue), array('cat' => $family, 'k' => $key), true);
|
||||
|
||||
if ($ret) {
|
||||
self::$in_db[$family][$key] = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue