From f0c725f29aeb7e5e9b2d1fc9e846f90cdbb152a3 Mon Sep 17 00:00:00 2001 From: brettp Date: Mon, 24 May 2010 19:43:14 +0000 Subject: Replacing '...' with html elipse character (…) in elgg_make_excerpt(). git-svn-id: http://code.elgg.org/elgg/trunk@6188 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/output.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engine/lib/output.php') 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 +} -- cgit v1.2.3