diff options
author | Friendika <info@friendika.com> | 2011-01-25 18:25:04 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-01-25 18:25:04 -0800 |
commit | 696eff1031864931477c7b2da3c8f39e4befac40 (patch) | |
tree | 07b4aeea6dadd9b4987c06ca2d029abad4ffc1e8 /include/items.php | |
parent | bb5ad77e2a67e0443444a433583c7d8de1a037a9 (diff) | |
download | volse-hubzilla-696eff1031864931477c7b2da3c8f39e4befac40.tar.gz volse-hubzilla-696eff1031864931477c7b2da3c8f39e4befac40.tar.bz2 volse-hubzilla-696eff1031864931477c7b2da3c8f39e4befac40.zip |
no comment box if no notify, not no poll
Diffstat (limited to 'include/items.php')
-rw-r--r-- | include/items.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/items.php b/include/items.php index b6a588800..7b0ff2ce6 100644 --- a/include/items.php +++ b/include/items.php @@ -1167,7 +1167,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0) { ); $datarray['last-child'] = 1; } - if(($contact['network'] === 'feed') || (! strlen($contact['poll']))) { + if(($contact['network'] === 'feed') || (! strlen($contact['notify']))) { // one way feed - no remote comment ability $datarray['last-child'] = 0; } @@ -1223,7 +1223,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0) { $datarray['last-child'] = 1; } - if(($contact['network'] === 'feed') || (! strlen($contact['poll']))) { + if(($contact['network'] === 'feed') || (! strlen($contact['notify']))) { // one way feed - no remote comment ability $datarray['last-child'] = 0; } |