diff --git a/extensions/tags/src/Listener/AddForumTagsRelationship.php b/extensions/tags/src/Listener/AddForumTagsRelationship.php index 259d7cdc0..77bcfc029 100755 --- a/extensions/tags/src/Listener/AddForumTagsRelationship.php +++ b/extensions/tags/src/Listener/AddForumTagsRelationship.php @@ -68,7 +68,10 @@ class AddForumTagsRelationship // doesn't actually have a tags relationship, we will manually load and // assign the tags data to it using an event listener. if ($event->isController(ShowForumController::class)) { - $event->data['tags'] = Tag::whereVisibleTo($event->actor)->withStateFor($event->actor)->with('lastDiscussion')->get(); + $event->data['tags'] = Tag::whereVisibleTo($event->actor) + ->withStateFor($event->actor) + ->with(['parent', 'lastDiscussion']) + ->get(); } }