aboutsummaryrefslogtreecommitdiffstats
path: root/include/config.php
diff options
context:
space:
mode:
authorM.Dent <dentm42@dm42.net>2018-10-28 17:23:31 -0400
committerM.Dent <dentm42@dm42.net>2018-10-28 17:23:31 -0400
commit3ab0ef1902a9ff1f33cf5540a866745dc98a11a9 (patch)
tree523ac2eeede1cb9c1ded36bbc1e58f5735d09a5a /include/config.php
parentc7c35b8b5a64e44f01e7557a43d13e518dc62aa8 (diff)
downloadvolse-hubzilla-3ab0ef1902a9ff1f33cf5540a866745dc98a11a9.tar.gz
volse-hubzilla-3ab0ef1902a9ff1f33cf5540a866745dc98a11a9.tar.bz2
volse-hubzilla-3ab0ef1902a9ff1f33cf5540a866745dc98a11a9.zip
Add timestamp and associated logic to pconfig
Diffstat (limited to 'include/config.php')
-rw-r--r--include/config.php4
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) {