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 | |
parent | f59aefd3d9d8191409edeb1bfdba3f16f0af9b12 (diff) | |
download | volse-hubzilla-453dd38e51a5fe20bb34396ecc5f11e345196322.tar.gz volse-hubzilla-453dd38e51a5fe20bb34396ecc5f11e345196322.tar.bz2 volse-hubzilla-453dd38e51a5fe20bb34396ecc5f11e345196322.zip |
missing include
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Lib/Activity.php | 2 | ||||
-rw-r--r-- | Zotlabs/Module/Item.php | 1 | ||||
-rw-r--r-- | Zotlabs/Module/Like.php | 2 |
3 files changed, 3 insertions, 2 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]); diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php index c4fac1385..3a74200c4 100644 --- a/Zotlabs/Module/Item.php +++ b/Zotlabs/Module/Item.php @@ -20,6 +20,7 @@ use App; require_once('include/crypto.php'); require_once('include/items.php'); require_once('include/security.php'); +require_once('include/conversation.php'); /** diff --git a/Zotlabs/Module/Like.php b/Zotlabs/Module/Like.php index accf075da..cfb8a9bf3 100644 --- a/Zotlabs/Module/Like.php +++ b/Zotlabs/Module/Like.php @@ -7,7 +7,7 @@ use Zotlabs\Lib\Libsync; require_once('include/security.php'); require_once('include/bbcode.php'); require_once('include/items.php'); - +require_once('include/conversation.php'); class Like extends \Zotlabs\Web\Controller { |