diff options
Diffstat (limited to 'mod/riverdashboard/endpoint')
-rw-r--r-- | mod/riverdashboard/endpoint/get_comments.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/riverdashboard/endpoint/get_comments.php b/mod/riverdashboard/endpoint/get_comments.php index 017591fa5..cc210b126 100644 --- a/mod/riverdashboard/endpoint/get_comments.php +++ b/mod/riverdashboard/endpoint/get_comments.php @@ -31,7 +31,7 @@ foreach ($comments as $comment) { echo "</span>"; //truncate comment to 150 characters and strip tags - $contents = elgg_make_excerpt($comment->value, 150); + $contents = elgg_get_excerpt($comment->value, 150); echo "<div class='river_comment_contents'>"; echo "<a href=\"{$comment_owner_url}\">" . $comment_owner->name . '</a> <span class="twitter_anywhere">' . parse_urls($contents) . '</span>'; |