OK, not sure why this is taken out in CE but if you want the SugarFeeds to respect your roles so that users can't see data that they shouldn't see then add 'related_module' and 'related_id' into the $this->lvs->setup call in modules\SugarFeed\Dashlets\SugarFeedDashlet\SugarF eedDashlet.php so that it looks like:
PHP Code:
$this->lvs->setup($this->seedBean, $this->displayTpl, $where , $lvsParams, 0, $this->displayRows,
array('name',
'description',
'date_entered',
'created_by',
'related_module', //egg: added back in so that acls work correctly
'related_id', //egg: added back in so that acls work correctly
'link_url',
'link_type'));
Bookmarks