[various] Rename PageInfo::appendToBody to searchAndAppendToBody

This commit is contained in:
Hypolite Petovan 2020-07-18 11:38:11 -04:00
parent 1534404e3a
commit a80e9154c5
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];
}
/**