mirror of
https://github.com/friendica/friendica
synced 2024-11-13 02:22:53 +00:00
Some fixes:
- avoids warning if no result is coming back - brought back init variable before using it Signed-off-by: Roland Haeder <roland@mxchange.org>
This commit is contained in:
parent
636164e9ef
commit
e171a1cd22
2 changed files with 5 additions and 1 deletions
|
@ -732,6 +732,8 @@ function dfrn_request_content(&$a) {
|
||||||
intval($intro[0]['contact-id'])
|
intval($intro[0]['contact-id'])
|
||||||
);
|
);
|
||||||
|
|
||||||
|
$auto_confirm = false;
|
||||||
|
|
||||||
if(dbm::is_result($r)) {
|
if(dbm::is_result($r)) {
|
||||||
if(($r[0]['page-flags'] != PAGE_NORMAL) && ($r[0]['page-flags'] != PAGE_PRVGROUP))
|
if(($r[0]['page-flags'] != PAGE_NORMAL) && ($r[0]['page-flags'] != PAGE_PRVGROUP))
|
||||||
$auto_confirm = true;
|
$auto_confirm = true;
|
||||||
|
|
|
@ -728,7 +728,9 @@ function network_content(&$a, $update = 0) {
|
||||||
intval($parents),
|
intval($parents),
|
||||||
intval($max_comments + 1)
|
intval($max_comments + 1)
|
||||||
);
|
);
|
||||||
$items = array_merge($items, $thread_items);
|
|
||||||
|
if (dbm::is_result($thread_items))
|
||||||
|
$items = array_merge($items, $thread_items);
|
||||||
}
|
}
|
||||||
$items = conv_sort($items,$ordering);
|
$items = conv_sort($items,$ordering);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue