Update text.php

This commit is contained in:
Max Kostikov 2018-11-29 11:48:12 +01:00
parent 48cd5855fe
commit d9faf6c4bb

View File

@ -3280,7 +3280,7 @@ function share_unshield($m) {
} }
function cleanup_bbcode($body, $uid = 0) { function cleanup_bbcode($body) {
/** /**
* fix naked links by passing through a callback to see if this is a hubzilla site * fix naked links by passing through a callback to see if this is a hubzilla site
@ -3316,7 +3316,7 @@ function cleanup_bbcode($body, $uid = 0) {
$body = preg_replace('/\[\/code\]\s*\[code\]/ism',"\n",$body); $body = preg_replace('/\[\/code\]\s*\[code\]/ism',"\n",$body);
$body = scale_external_images($body, false, false, $uid); $body = scale_external_images($body, false);
return $body; return $body;
} }