diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-10-26 19:01:16 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-10-26 19:01:16 -0700 |
commit | eb5e6aae7273fef06a06f983fe78aaad737aa729 (patch) | |
tree | 355b1518f1553c970d3cbad7b8e923a66b64dc9c /mod/salmon.php | |
parent | d453560be9142067391fc0213d5fd5066667e54f (diff) | |
download | volse-hubzilla-eb5e6aae7273fef06a06f983fe78aaad737aa729.tar.gz volse-hubzilla-eb5e6aae7273fef06a06f983fe78aaad737aa729.tar.bz2 volse-hubzilla-eb5e6aae7273fef06a06f983fe78aaad737aa729.zip |
a few more fsw tweaks
Diffstat (limited to 'mod/salmon.php')
-rw-r--r-- | mod/salmon.php | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/mod/salmon.php b/mod/salmon.php index 74377f9e9..54353132a 100644 --- a/mod/salmon.php +++ b/mod/salmon.php @@ -195,8 +195,8 @@ function salmon_post(&$a) { * */ - $r = q("SELECT * FROM `contact` WHERE `network` = 'stat' AND ( `url` = '%s' OR `lrdd` = '%s') AND `uid` = %d - AND `readonly` = 0 LIMIT 1", + $r = q("SELECT * FROM `contact` WHERE `network` = 'stat' AND ( `url` = '%s' OR `lrdd` = '%s') + AND `uid` = %d LIMIT 1", dbesc($author_link), dbesc($author_link), intval($importer['uid']) @@ -206,6 +206,13 @@ function salmon_post(&$a) { file_put_contents('salmon.out',"\n" . 'Author unknown to us.' . "\n", FILE_APPEND); } + if((count($r)) && ($r[0]['readonly'])) { + if($debugging) + file_put_contents('salmon.out',"\n" . 'Ignoring this author.' . "\n", FILE_APPEND); + salmon_return(200); + // NOTREACHED + } + require_once('include/items.php'); |