[various] Rename PageInfo::appendToBody to searchAndAppendToBody #1005

Merged
MrPetovan merged 1 commit from task/8676-ap-multiple-link-image into develop 2020-07-18 17:51:49 +02:00
2 changed files with 3 additions and 3 deletions

View file

@ -897,7 +897,7 @@ function statusnet_fetchtimeline(App $a, $uid)
$_REQUEST["title"] = "";
$_REQUEST["body"] = PageInfo::appendToBody($post->text, true);
$_REQUEST["body"] = PageInfo::searchAndAppendToBody($post->text, true);
if (is_string($post->place->name)) {
$_REQUEST["location"] = $post->place->name;
}

View file

@ -1365,11 +1365,11 @@ function twitter_expand_entities($body, stdClass $status, $picture)
} elseif ($picture) {
$body .= "\n\n[img]" . $picture . "[/img]\n";
} else {
$body = PageInfo::appendToBody($body);
$body = PageInfo::searchAndAppendToBody($body);
}
}
return ['body' => $body, 'plain' => $plain, 'taglist' => $taglist];
return ['body' => $body, 'plain' => trim($plain), 'taglist' => $taglist];
}
/**