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:
Roland Häder 2016-09-18 23:34:50 +02:00
parent 636164e9ef
commit e171a1cd22
No known key found for this signature in database
GPG Key ID: B72F8185C6C7BD78
2 changed files with 5 additions and 1 deletions

View File

@ -732,6 +732,8 @@ function dfrn_request_content(&$a) {
intval($intro[0]['contact-id'])
);
$auto_confirm = false;
if(dbm::is_result($r)) {
if(($r[0]['page-flags'] != PAGE_NORMAL) && ($r[0]['page-flags'] != PAGE_PRVGROUP))
$auto_confirm = true;

View File

@ -728,7 +728,9 @@ function network_content(&$a, $update = 0) {
intval($parents),
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);
} else {