Shortener deactivated, due to Diaspora problems

This commit is contained in:
Michael 2018-03-11 12:16:17 +00:00
parent 229fb0439e
commit fbb38837b0
1 changed files with 4 additions and 3 deletions

View File

@ -863,9 +863,10 @@ class BBCode
$scheme = $parts['scheme'] . '://';
$styled_url = str_replace($scheme, '', $url);
if (strlen($styled_url) > 30) {
$styled_url = substr($styled_url, 0, 30) . "";
}
// Currently deactivated, due to preview problems inside of Diaspora
// if (strlen($styled_url) > 30) {
// $styled_url = substr($styled_url, 0, 30) . "…";
// }
$html = '<a href="%s" target="_blank">%s</a>';