From: Friendika Date: Wed, 26 Jan 2011 02:25:04 +0000 (-0800) Subject: no comment box if no notify, not no poll X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=696eff1031864931477c7b2da3c8f39e4befac40;p=friendica.git no comment box if no notify, not no poll --- diff --git a/include/items.php b/include/items.php index b6a5888001..7b0ff2ce6b 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; }