Merge pull request #7203 from MrPetovan/bug/warnings

Fix condition in dfrn_request_content() when $a->profile isn't set
This commit is contained in:
Philipp 2019-05-29 07:06:06 +02:00 committed by GitHub
commit 59bbb1ac99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -476,7 +476,7 @@ function dfrn_request_post(App $a)
function dfrn_request_content(App $a)
{
if (($a->argc != 2) || (!count($a->profile))) {
if ($a->argc != 2 || empty($a->profile)) {
return "";
}