diff options
Diffstat (limited to 'engine')
-rw-r--r-- | engine/lib/output.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/lib/output.php b/engine/lib/output.php index d2b76a482..b2eb532ca 100644 --- a/engine/lib/output.php +++ b/engine/lib/output.php @@ -112,7 +112,7 @@ function elgg_make_excerpt($text, $num_chars = 250) { $excerpt = trim(elgg_substr($excerpt, 0, $space)); if ($string_length != elgg_strlen($excerpt)) { - $excerpt .= '...'; + $excerpt .= '…'; } return $excerpt; @@ -147,4 +147,4 @@ function friendly_title($title) { */ function friendly_time($time) { return elgg_view('output/friendlytime', array('time' => $time)); -}
\ No newline at end of file +} |