Merge pull request #1324 from MrPetovan/bug/deprecated

[various] Address a couple of PHP 8.1 notices
pull/1325/head
Michael Vogel 2022-11-30 07:22:29 +01:00 committed by GitHub
commit 1c5787946f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -126,7 +126,7 @@ function dwpost_send(App $a, array &$b)
return;
}
if (!strstr($b['postopts'],'dwpost')) {
if (strpos($b['postopts'] ?? '', 'dwpost') === false) {
return;
}

View File

@ -366,7 +366,7 @@ function statusnet_hook_fork(App $a, array &$b)
}
} else {
// Comments are never exported when we don't import the GNU Social timeline
if (!strstr($post['postopts'], 'statusnet') || ($post['parent'] != $post['id']) || $post['private']) {
if (strpos($post['postopts'] ?? '', 'statusnet') === false || ($post['parent'] != $post['id']) || $post['private']) {
$b['execute'] = false;
return;
}