diff options
author | Mario <mario@mariovavti.com> | 2020-04-09 09:38:36 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-04-09 09:38:36 +0000 |
commit | 328685d2fbe505fd5b1bf9892a0cce993210ac52 (patch) | |
tree | 5c2a800872074fa86c284e95382dc6d535cfd9b2 /include/event.php | |
parent | 806c738923b9d880af49a1811d8fbf2c2ee36309 (diff) | |
download | volse-hubzilla-328685d2fbe505fd5b1bf9892a0cce993210ac52.tar.gz volse-hubzilla-328685d2fbe505fd5b1bf9892a0cce993210ac52.tar.bz2 volse-hubzilla-328685d2fbe505fd5b1bf9892a0cce993210ac52.zip |
move from build_sync_packet() to Libsync::build_sync_packet()
Diffstat (limited to 'include/event.php')
-rw-r--r-- | include/event.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/event.php b/include/event.php index 69ca64e0f..c9cbb7c94 100644 --- a/include/event.php +++ b/include/event.php @@ -8,6 +8,7 @@ use Sabre\VObject; use Zotlabs\Lib\Activity; +use Zotlabs\Lib\Libsync; use Ramsey\Uuid\Uuid; use Ramsey\Uuid\Exception\UnsatisfiedDependencyException; @@ -663,7 +664,7 @@ function event_addtocal($item_id, $uid) { intval($channel['channel_id']) ); if($z) { - build_sync_packet($channel['channel_id'],array('event_item' => array(encode_item($sync_item[0],true)),'event' => $z)); + Libsync::build_sync_packet($channel['channel_id'],array('event_item' => array(encode_item($sync_item[0],true)),'event' => $z)); } return true; } |