From 0303ffcbcd835cf273f56c0f579102b59c6801b4 Mon Sep 17 00:00:00 2001 From: Nao Date: Sun, 5 Oct 2014 16:08:56 +0200 Subject: [PATCH] * Shortened strings returned by... shorten_subject(). (Subs.php) --- core/app/Subs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/app/Subs.php b/core/app/Subs.php index 338c56d5..c716f66b 100644 --- a/core/app/Subs.php +++ b/core/app/Subs.php @@ -940,7 +940,7 @@ function shorten_subject($subject, $len) return $subject; // Shorten it by the length it was too long, and strip off junk from the end. - return westr::substr($subject, 0, $len) . '...'; + return westr::substr($subject, 0, $len) . '…'; } /**