mirror of
https://github.com/friendica/friendica
synced 2024-11-14 04:22:55 +00:00
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:
commit
59bbb1ac99
1 changed files with 1 additions and 1 deletions
|
@ -476,7 +476,7 @@ function dfrn_request_post(App $a)
|
||||||
|
|
||||||
function dfrn_request_content(App $a)
|
function dfrn_request_content(App $a)
|
||||||
{
|
{
|
||||||
if (($a->argc != 2) || (!count($a->profile))) {
|
if ($a->argc != 2 || empty($a->profile)) {
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue