aboutsummaryrefslogtreecommitdiffstats
path: root/include/config.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-06-10 08:40:39 +0000
committerMario <mario@mariovavti.com>2024-06-10 08:40:39 +0000
commit43a2c21d8784ed0a5a4968edb91fed818fd993f7 (patch)
tree8116009a976533657a55f6d9b75d6fe7c43c7055 /include/config.php
parent69862bc6df3ab0a32edbb90ff0e60ffedd03cc4e (diff)
downloadvolse-hubzilla-43a2c21d8784ed0a5a4968edb91fed818fd993f7.tar.gz
volse-hubzilla-43a2c21d8784ed0a5a4968edb91fed818fd993f7.tar.bz2
volse-hubzilla-43a2c21d8784ed0a5a4968edb91fed818fd993f7.zip
fix updated not supported in wrapper function
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 674d5afe4..4dd40eccf 100644
--- a/include/config.php
+++ b/include/config.php
@@ -120,8 +120,8 @@ function get_pconfig($uid, $family, $key, $default = false) {
return Zlib\PConfig::Get($uid,$family,$key,$default);
}
-function set_pconfig($uid, $family, $key, $value) {
- return Zlib\PConfig::Set($uid,$family,$key,$value);
+function set_pconfig($uid, $family, $key, $value, $updated = NULL) {
+ return Zlib\PConfig::Set($uid, $family, $key, $value, $updated);
}
function del_pconfig($uid, $family, $key, $updated = NULL) {