----------------------------------------
* CRM-14439: WP demo - Access denied when visiting breadcrumb links from field listing
https://issues.civicrm.org/jira/browse/CRM-14439
$crumbs[] = array(
'title' => $menu[$currentPath]['title'],
'url' => CRM_Utils_System::url($currentPath,
- 'reset=1' . $urlVar, FALSE
+ 'reset=1' . $urlVar,
+ FALSE, // absolute
+ NULL, // fragment
+ TRUE, // htmlize
+ FALSE, // frontend
+ TRUE // forceBackend; CRM-14439 work-around; acceptable for now because we don't display breadcrumbs on frontend
),
);
}