]> git.mxchange.org Git - friendica.git/commitdiff
Cutting the text has to be made UTF-8 aware as well.
authorMichael Vogel <icarus@dabo.de>
Tue, 2 Sep 2014 00:14:16 +0000 (02:14 +0200)
committerMichael Vogel <icarus@dabo.de>
Tue, 2 Sep 2014 00:14:16 +0000 (02:14 +0200)
include/plaintext.php

index cf0e209c067a5fb43bbb06d28f3a1d0dc94eab83..88febbfff858449fdec687cd35e6ac945e904eb0 100644 (file)
@@ -116,7 +116,7 @@ function shortenmsg($msg, $limit, $twitter = false) {
                        $msg = trim($msg."\n".$line);
                // Is the new message empty by now or is it a reshared message?
                elseif (($msg == "") OR (($row == 1) AND (substr($msg, 0, 4) == $recycle)))
-                       $msg = substr(substr(trim($msg."\n".$line), 0, $limit), 0, -3)."...";
+                       $msg = iconv_substr(iconv_substr(trim($msg."\n".$line), 0, $limit, "UTF-8"), 0, -3, "UTF-8")."...";
                else
                        break;
        }