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

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 "";
}