[various] PHP Notice fixings #880

Merged
nupplaphil merged 1 commit from bug/friendica-7299 into 2019.09-rc 2019-08-27 15:02:22 +02:00
2 changed files with 2 additions and 1 deletions

View file

@ -42,6 +42,7 @@
public $errors = [ public $errors = [
'invalid-endpoint' => 'The endpoint you supplied does not appear to be valid.', 'invalid-endpoint' => 'The endpoint you supplied does not appear to be valid.',
'401' => 'Unauthorized.',
'403' => 'Permission denied.', '403' => 'Permission denied.',
'404' => 'Endpoint not found.', '404' => 'Endpoint not found.',
'405' => 'Method not allowed.', '405' => 'Method not allowed.',

View file

@ -1900,7 +1900,7 @@ function twitter_update_mentions($body)
function twitter_convert_share(array $attributes, array $author_contact, $content, $is_quote_share) function twitter_convert_share(array $attributes, array $author_contact, $content, $is_quote_share)
{ {
if ($author_contact['network'] == Protocol::TWITTER) { if ($author_contact['network'] == Protocol::TWITTER) {
$mention = '@' . $author_contact['nickname']; $mention = '@' . $author_contact['nick'];
} else { } else {
$mention = $author_contact['addr']; $mention = $author_contact['addr'];
} }