diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-06-24 11:25:20 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-06-24 11:25:20 +0200 |
commit | c8ae04a96a38b7351c2ac506c836bb9b1734d58e (patch) | |
tree | b15646cc7746f8b18dc844a9d7c8836c29bc7896 /include/config.php | |
parent | 39b14b6b811ec65f8c8a812397f9ee04877cd53d (diff) | |
parent | c809b6f95e0c9717cba9cfad62b74104fbcc878d (diff) | |
download | volse-hubzilla-c8ae04a96a38b7351c2ac506c836bb9b1734d58e.tar.gz volse-hubzilla-c8ae04a96a38b7351c2ac506c836bb9b1734d58e.tar.bz2 volse-hubzilla-c8ae04a96a38b7351c2ac506c836bb9b1734d58e.zip |
Merge branch 'dev' into sabre32
Diffstat (limited to 'include/config.php')
-rw-r--r-- | include/config.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/config.php b/include/config.php index 65199283d..ece22793f 100644 --- a/include/config.php +++ b/include/config.php @@ -98,20 +98,20 @@ function del_aconfig($account_id, $family, $key) { } -function load_abconfig($chash,$xhash) { - Zlib\AbConfig::Load($chash,$xhash); +function load_abconfig($chan,$xhash) { + Zlib\AbConfig::Load($chan,$xhash); } -function get_abconfig($chash,$xhash,$family,$key) { - return Zlib\AbConfig::Get($chash,$xhash,$family,$key); +function get_abconfig($chan,$xhash,$family,$key) { + return Zlib\AbConfig::Get($chan,$xhash,$family,$key); } -function set_abconfig($chash,$xhash,$family,$key,$value) { - return Zlib\AbConfig::Set($chash,$xhash,$family,$key,$value); +function set_abconfig($chan,$xhash,$family,$key,$value) { + return Zlib\AbConfig::Set($chan,$xhash,$family,$key,$value); } -function del_abconfig($chash,$xhash,$family,$key) { - return Zlib\AbConfig::Delete($chash,$xhash,$family,$key); +function del_abconfig($chan,$xhash,$family,$key) { + return Zlib\AbConfig::Delete($chan,$xhash,$family,$key); } function load_iconfig(&$item) { |