diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-07-27 22:32:21 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-07-27 22:32:21 -0700 |
commit | fa154248dcd62677544aa9ac7d82ddcd3df92f6e (patch) | |
tree | 57e47aafd0faa2b462aeb7bea864b562577333d9 /include/notifier.php | |
parent | 2e5fb9c37e76c20ea0c25e1215a549b561dc68a8 (diff) | |
download | volse-hubzilla-fa154248dcd62677544aa9ac7d82ddcd3df92f6e.tar.gz volse-hubzilla-fa154248dcd62677544aa9ac7d82ddcd3df92f6e.tar.bz2 volse-hubzilla-fa154248dcd62677544aa9ac7d82ddcd3df92f6e.zip |
working on readonly contact attribute
Diffstat (limited to 'include/notifier.php')
-rw-r--r-- | include/notifier.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/notifier.php b/include/notifier.php index 6986deb96..25a082a90 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -15,7 +15,7 @@ require_once("datetime.php"); if($argc < 3) exit; -//dbg(3); +dbg(3); $baseurl = $argv[1]; $a->set_baseurl($argv[1]); @@ -215,12 +215,14 @@ if($argc < 3) // delivery loop foreach($r as $rr) { - if($rr['self']) continue; if(! strlen($rr['dfrn-id'])) continue; + + + $url = $rr['notify'] . '?dfrn_id=' . $rr['dfrn-id']; $xml = fetch_url($url); @@ -240,7 +242,7 @@ echo $xml; openssl_public_decrypt($challenge,$postvars['challenge'],$rr['pubkey']); - if(strlen($rr['dfrn-id']) && (! $rr['blocked'])) + if(strlen($rr['dfrn-id']) && (! ($rr['blocked']) || ($rr['readonly']))) $postvars['data'] = $atom; else $postvars['data'] = $atom_nowrite; |