diff options
author | Mario <mario@mariovavti.com> | 2020-11-23 14:01:04 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-11-23 14:01:04 +0000 |
commit | 453dd38e51a5fe20bb34396ecc5f11e345196322 (patch) | |
tree | 47714205d763834fff4ce3e03e5f9a1c439af0cd /Zotlabs/Lib | |
parent | f59aefd3d9d8191409edeb1bfdba3f16f0af9b12 (diff) | |
download | volse-hubzilla-453dd38e51a5fe20bb34396ecc5f11e345196322.tar.gz volse-hubzilla-453dd38e51a5fe20bb34396ecc5f11e345196322.tar.bz2 volse-hubzilla-453dd38e51a5fe20bb34396ecc5f11e345196322.zip |
missing include
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r-- | Zotlabs/Lib/Activity.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 5751d276a..3006c6789 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -168,7 +168,7 @@ class Activity { ); if($r) { xchan_query($r,true); - $r = fetch_post_tags($r,true); + $r = fetch_post_tags($r); if (in_array($r[0]['verb'], ['Create', 'Invite']) && $r[0]['obj_type'] === ACTIVITY_OBJ_EVENT) { $r[0]['verb'] = 'Invite'; return self::encode_activity($r[0]); |