Shared links to Diaspora should look better now

This commit is contained in:
Michael Vogel 2016-05-03 20:12:13 +02:00
parent 3a819e3630
commit a7aaf7cc98
1 changed files with 6 additions and 3 deletions

View File

@ -101,7 +101,10 @@ function bb_remove_share_information($Text, $plaintext = false, $nolink = false)
if ($nolink)
return $data["text"].$data["after"];
if ($plaintext)
$title = htmlentities($data["title"], ENT_QUOTES, 'UTF-8', false);
$text = htmlentities($data["text"], ENT_QUOTES, 'UTF-8', false);
if ($plaintext or strstr($text, $title))
$data["title"] = $data["url"];
if (($data["text"] == "") AND ($data["title"] != "") AND ($data["url"] == ""))
@ -115,10 +118,10 @@ function bb_remove_share_information($Text, $plaintext = false, $nolink = false)
if (($data["url"] != "") AND ($data["title"] != ""))
$text .= "\n[url=".$data["url"]."]".$data["title"]."[/url]";
elseif (($link != ""))
elseif (($data["url"] != ""))
$text .= "\n".$data["url"];
return $text.$data["after"];
return $text."\n".$data["after"];
}
function bb_cleanstyle($st) {