mirror of
https://github.com/friendica/friendica
synced 2024-11-17 18:23:40 +00:00
Remove call of non-existing functions
This functions were removed in commit a97b3f690c9e4476ba638236897507100f77af6f
- twitter_statuses_show()
- twitter_media_entities()
- twitter_expand_entities()
see a97b3f690c
This commit is contained in:
parent
b5c2cbc597
commit
4a9c7d2f30
1 changed files with 1 additions and 20 deletions
|
@ -232,12 +232,7 @@ class Babel extends BaseModule
|
|||
if (file_exists('addon/twitter/twitter.php')) {
|
||||
require_once 'addon/twitter/twitter.php';
|
||||
|
||||
if (parse_url($json) !== false) {
|
||||
preg_match('#^https?://(?:mobile\.|www\.)?twitter.com/[^/]+/status/(\d+).*#', $json, $matches);
|
||||
$status = twitter_statuses_show($matches[1]);
|
||||
} else {
|
||||
$status = json_decode($json);
|
||||
}
|
||||
$status = json_decode($json);
|
||||
|
||||
$results[] = [
|
||||
'title' => DI::l10n()->t('Decoded post'),
|
||||
|
@ -258,24 +253,10 @@ class Babel extends BaseModule
|
|||
$postarray['object-type'] = Activity\ObjectType::BOOKMARK;
|
||||
}
|
||||
|
||||
$picture = \twitter_media_entities($status, $postarray);
|
||||
|
||||
$results[] = [
|
||||
'title' => DI::l10n()->t('Post array before expand entities'),
|
||||
'content' => $this->visible_whitespace(var_export($postarray, true)),
|
||||
];
|
||||
|
||||
$converted = \twitter_expand_entities($postarray['body'], $status, $picture);
|
||||
|
||||
$results[] = [
|
||||
'title' => DI::l10n()->t('Post converted'),
|
||||
'content' => $this->visible_whitespace(var_export($converted, true)),
|
||||
];
|
||||
|
||||
$results[] = [
|
||||
'title' => DI::l10n()->t('Converted body'),
|
||||
'content' => $this->visible_whitespace($converted['body']),
|
||||
];
|
||||
} else {
|
||||
$results[] = [
|
||||
'title' => DI::l10n()->tt('Error', 'Errors', 1),
|
||||
|
|
Loading…
Reference in a new issue