facebook comments not working

This commit is contained in:
friendica 2011-12-19 01:09:35 -08:00
parent c3e8c695a8
commit 9a7d828340
5 changed files with 16 additions and 15 deletions

Binary file not shown.

View File

@ -511,23 +511,24 @@ function facebook_post_hook(&$a,&$b) {
$toplevel = (($b['id'] == $b['parent']) ? true : false); $toplevel = (($b['id'] == $b['parent']) ? true : false);
if(strstr($b['postopts'],'facebook')) {
$linking = ((get_pconfig($b['uid'],'facebook','no_linking')) ? 0 : 1); $linking = ((get_pconfig($b['uid'],'facebook','no_linking')) ? 0 : 1);
if((! $toplevel) && ($linking)) { if((! $toplevel) && ($linking)) {
$r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1", $r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
intval($b['parent']), intval($b['parent']),
intval($b['uid']) intval($b['uid'])
); );
if(count($r) && substr($r[0]['uri'],0,4) === 'fb::') if(count($r) && substr($r[0]['uri'],0,4) === 'fb::')
$reply = substr($r[0]['uri'],4); $reply = substr($r[0]['uri'],4);
elseif(count($r) && substr($r[0]['extid'],0,4) === 'fb::') elseif(count($r) && substr($r[0]['extid'],0,4) === 'fb::')
$reply = substr($r[0]['extid'],4); $reply = substr($r[0]['extid'],4);
else else
return; return;
logger('facebook reply id=' . $reply); logger('facebook reply id=' . $reply);
} }
if(strstr($b['postopts'],'facebook') || ($reply)) {
if($b['private'] && $reply === false) { if($b['private'] && $reply === false) {
$allow_people = expand_acl($b['allow_cid']); $allow_people = expand_acl($b['allow_cid']);

Binary file not shown.

Binary file not shown.

Binary file not shown.