aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/text.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/text.php b/include/text.php
index 113448a92..5574b9054 100644
--- a/include/text.php
+++ b/include/text.php
@@ -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
@@ -3316,7 +3316,7 @@ function cleanup_bbcode($body, $uid = 0) {
$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;
}