Skip to content

Commit

Permalink
chore: make sure elgg_get_excerpt gets a string
Browse files Browse the repository at this point in the history
  • Loading branch information
jeabakker committed May 24, 2023
1 parent 6fd2544 commit 6e9e01a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/default/group_tools/group/suggested/entity.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
$params = [
'entity' => $entity,
'title' => elgg_view_entity_url($entity),
'content' => elgg_get_excerpt($entity->description),
'content' => elgg_get_excerpt((string) $entity->description),
'byline' => false,
'time' => false,
'access' => false,
Expand Down

0 comments on commit 6e9e01a

Please sign in to comment.