diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-11-21 12:21:29 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-11-21 13:27:21 +0100 |
commit | e30be643c9f217dc379aac0feb085a1b1ffa44e1 (patch) | |
tree | db4a2bb5763aa44762033acd7e64a9ae36db14ea | |
parent | 07fd2dbc99baee37735124b78bc4b169c59b31c0 (diff) | |
download | volse-hubzilla-e30be643c9f217dc379aac0feb085a1b1ffa44e1.tar.gz volse-hubzilla-e30be643c9f217dc379aac0feb085a1b1ffa44e1.tar.bz2 volse-hubzilla-e30be643c9f217dc379aac0feb085a1b1ffa44e1.zip |
fix call to undefined function
(cherry picked from commit 0bba9482dfbcc0fd8bea880ac3820548281ecfc2)
-rw-r--r-- | Zotlabs/Lib/PConfig.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/PConfig.php b/Zotlabs/Lib/PConfig.php index b9384cf6b..5e5954c95 100644 --- a/Zotlabs/Lib/PConfig.php +++ b/Zotlabs/Lib/PConfig.php @@ -138,7 +138,7 @@ class PConfig { $hash = hash('sha256',$family.':'.$key); if (self::Get($uid, 'hz_delpconfig', $hash) !== false) { - if (Get($uid, 'hz_delpconfig', $hash) > $updated) { + if (self::Get($uid, 'hz_delpconfig', $hash) > $updated) { logger('Refusing to update pconfig with outdated info (Item deleted more recently).', LOGGER_NORMAL, LOG_ERR); return self::Get($uid,$family,$key); } else { |