diff options
Diffstat (limited to 'mod')
| -rw-r--r-- | mod/riverdashboard/endpoint/get_comments.php | 2 | ||||
| -rw-r--r-- | mod/riverdashboard/views/default/river/item/wrapper.php | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/mod/riverdashboard/endpoint/get_comments.php b/mod/riverdashboard/endpoint/get_comments.php index 59ff3d785..b6f4b565a 100644 --- a/mod/riverdashboard/endpoint/get_comments.php +++ b/mod/riverdashboard/endpoint/get_comments.php @@ -34,7 +34,7 @@ foreach ($comments as $comment) {  	$contents = elgg_make_excerpt($comment->value, 150);  	echo "<div class='river_comment_contents'>"; -	echo "<a href=\"{$comment_owner_url}\">" . $comment_owner->name . "</a> " . parse_urls($contents); +	echo "<a href=\"{$comment_owner_url}\">" . $comment_owner->name . '</a> <span class="twitter_anywhere">' . parse_urls($contents) . '</span>';  	echo "<span class='entity_subtext'>" . friendly_time($comment->time_created) . "</span>";  	echo "</div></div>";  }
\ No newline at end of file diff --git a/mod/riverdashboard/views/default/river/item/wrapper.php b/mod/riverdashboard/views/default/river/item/wrapper.php index 6e106529e..57b241114 100644 --- a/mod/riverdashboard/views/default/river/item/wrapper.php +++ b/mod/riverdashboard/views/default/river/item/wrapper.php @@ -102,7 +102,7 @@ if ($comments){  		$contents = elgg_make_excerpt($comment->value, 150);  		echo "<div class='river_comment_contents'>"; -		echo "<a href=\"{$comment_owner_url}\">" . $comment_owner->name . "</a> " . parse_urls($contents); +		echo "<a href=\"{$comment_owner_url}\">" . $comment_owner->name . '</a> <span class="twitter_anywhere">' . parse_urls($contents) . '</span>';  		echo "<span class='entity_subtext'>" . friendly_time($comment->time_created) . "</span>";  		echo "</div></div>";  		$counter++; | 
