----------------------------------------
* CRM-13901: Suppress Membership Dashboard for contacts who may not see all users as it contains info about members they are blocked from
https://issues.civicrm.org/jira/browse/CRM-13901
//CRM-13901 don't show dashboard to contacts with limited view writes & it does not relect
//what they have access to
//@todo implement acls on dashboard querys (preferably via api to enhance that at the same time)
- if (!CRM_Core_Permission::check(array('view all contacts', 'edit all contacts'))) {
+ if (!CRM_Core_Permission::check('view all contacts') && !CRM_Core_Permission::check('edit all contacts')) {
$this->showMembershipSummary = FALSE;
$this->assign('membershipSummary', FALSE);
return;