From 3d51518a13fd44da3fa9a01b9ae1f1baa5d41848 Mon Sep 17 00:00:00 2001 From: Friendika Date: Sun, 10 Apr 2011 19:29:21 -0700 Subject: set writable flag on dfrn_poll --- mod/dfrn_notify.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'mod/dfrn_notify.php') diff --git a/mod/dfrn_notify.php b/mod/dfrn_notify.php index dd6866b38..f6f68d348 100644 --- a/mod/dfrn_notify.php +++ b/mod/dfrn_notify.php @@ -80,6 +80,14 @@ function dfrn_notify_post(&$a) { $importer = $r[0]; + if(($writable != (-1)) && ($writable != $importer['writable'])) { + q("UPDATE `contact` SET `writable` = %d WHERE `id` = %d LIMIT 1", + intval($writable), + intval($importer['id']) + ); + $importer['writable'] = $writable; + } + logger('dfrn_notify: received notify from ' . $importer['name'] . ' for ' . $importer['username']); logger('dfrn_notify: data: ' . $data, LOGGER_DATA); @@ -124,8 +132,6 @@ function dfrn_notify_post(&$a) { } - - if($importer['readonly']) { // We aren't receiving stuff from this person. But we will quietly ignore them // rather than a blatant "go away" message. -- cgit v1.2.3