X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=include%2Fplaintext.php;h=6ab4ec77d6c9120adcd6213e65b40d2b02d13246;hb=f94a10bf00de699a5f3d22ea74665053a5661175;hp=e18604334b2041f3c0b5fe6f62f28978ae66fd2f;hpb=8bcf52d1805f63ab28bc1ad099265abd2e76069c;p=friendica.git diff --git a/include/plaintext.php b/include/plaintext.php index e18604334b..6ab4ec77d6 100644 --- a/include/plaintext.php +++ b/include/plaintext.php @@ -1,6 +1,15 @@ $line) { if (iconv_strlen(trim($msg."\n".$line), "UTF-8") <= $limit) $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 = iconv_substr(iconv_substr(trim($msg."\n".$line), 0, $limit, "UTF-8"), 0, -3, "UTF-8")."..."; + $msg = iconv_substr(iconv_substr(trim($msg."\n".$line), 0, $limit, "UTF-8"), 0, -3, "UTF-8").$ellipsis; else break; } @@ -280,10 +297,7 @@ function shortenmsg($msg, $limit, $twitter = false) { * * @return string The converted message */ -function plaintext($a, $b, $limit = 0, $includedlinks = false, $htmlmode = 2, $target_network = "") { - require_once("include/bbcode.php"); - require_once("include/html2plain.php"); - require_once("include/network.php"); +function plaintext(App $a, $b, $limit = 0, $includedlinks = false, $htmlmode = 2, $target_network = "") { // Remove the hash tags $URLSearchString = "^\[\]";