Merge pull request #3168 from annando/bugfix-contact-posts

posts_from_contact_url: Handle the case when a contact is unknown.
This commit is contained in:
Tobias Diekershoff 2017-02-17 08:03:15 +01:00 committed by GitHub
commit 6dc07514db

View file

@ -730,6 +730,10 @@ function posts_from_contact_url(App $a, $contact_url) {
$sql = "`item`.`uid` = %d";
}
if (!dbm::is_result($r)) {
return '';
}
$author_id = intval($r[0]["author-id"]);
if (get_config('system', 'old_pager')) {