Improvements in fbsync/fbpost, target for urls set to "_blank" #183

Merged
annando merged 5 commits from master into master 2014-02-16 14:19:01 +01:00
Showing only changes of commit 93d5394ffa - Show all commits

View file

@ -424,6 +424,11 @@ function fbsync_createcomment($a, $uid, $self_id, $self, $user, $contacts, $appl
$contact_id = fbsync_fetch_contact($uid, $contacts[$comment->fromid], array(), false);
if ($contact_id == -1) {
logger('fbsync_createcomment: Contact was blocked. Comment not imported '.print_r($comment, true), LOGGER_DEBUG);
return;
}
if ($contact_id <= 0)
$contact_id = $self[0]["id"];