add google buzz

This commit is contained in:
Friendika 2010-11-21 15:25:10 -08:00
parent f7760a9f5b
commit f1630780e9
3 changed files with 28 additions and 7 deletions

View file

@ -257,7 +257,7 @@
$deliver_status = dfrn_deliver($owner,$contact,$atom);
break;
default:
if($followup) {
if($followup && $contact['notify']) {
slapper($owner,$contact['notify'],$slap);
}
else {
@ -268,7 +268,9 @@
if(count($slaps) && $notify_hub) {
logger('notifier: slapdelivery: ' . $contact['name']);
foreach($slaps as $slappy) {
slapper($owner,$contact['notify'],$slappy);
if($contact['notify']) {
slapper($owner,$contact['notify'],$slappy);
}
}
}
}
@ -289,7 +291,9 @@
foreach($url_recipients as $url) {
logger('notifier: urldelivery: ' . $url);
foreach($slaps as $slappy) {
slapper($owner,$url,$slappy);
if($url) {
slapper($owner,$url,$slappy);
}
}
}
}