diff options
author | zotlabs <mike@macgirvin.com> | 2018-11-07 01:43:26 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-11-07 01:43:26 -0800 |
commit | 714831195319bcb5359511ce6cd9c5dccc6099dd (patch) | |
tree | b32dc341c1ee307ea8ad655b3798ed945bbec310 /include/config.php | |
parent | f57fcefe6bc70ef06fcf61a204a15b142c030ac5 (diff) | |
parent | fc1d8c0138f834ffa1c9044525c32757059c0f23 (diff) | |
download | volse-hubzilla-714831195319bcb5359511ce6cd9c5dccc6099dd.tar.gz volse-hubzilla-714831195319bcb5359511ce6cd9c5dccc6099dd.tar.bz2 volse-hubzilla-714831195319bcb5359511ce6cd9c5dccc6099dd.zip |
Merge branch 'dev' of https://framagit.org/hubzilla/core into xdev_merge
Diffstat (limited to 'include/config.php')
-rw-r--r-- | include/config.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/config.php b/include/config.php index 0be791715..ec3547a82 100644 --- a/include/config.php +++ b/include/config.php @@ -59,8 +59,8 @@ function set_pconfig($uid, $family, $key, $value) { return Zlib\PConfig::Set($uid,$family,$key,$value); } -function del_pconfig($uid, $family, $key) { - return Zlib\PConfig::Delete($uid,$family,$key); +function del_pconfig($uid, $family, $key, $updated = NULL) { + return Zlib\PConfig::Delete($uid,$family,$key,$updated); } function load_xconfig($xchan) { |