Skip to content
Snippets Groups Projects
Unverified Commit 927b3ade authored by Seamus Lee's avatar Seamus Lee Committed by GitHub
Browse files

Merge pull request #19414 from spalmstr/Issue2307

Fix Issue 2307
parents 459192b0 6c5ddec6
Branches
Tags
No related merge requests found
......@@ -168,7 +168,12 @@ class CRM_Contact_Form_Task_Map extends CRM_Contact_Form_Task {
}
$session->pushUserContext(CRM_Utils_System::url('civicrm/event/info', "{$args}{$ids}"));
}
CRM_Utils_System::appendBreadCrumb($bcTitle, $redirect);
// Issue 2307
// CRM_Utils_System::appendBreadCrumb only takes one argument, an array
// of breadcrumbs, not two.
$breadcrumbs[0]['title'] = $bcTitle;
$breadcrumbs[0]['url'] = $redirect;
CRM_Utils_System::appendBreadCrumb($breadcrumbs);
}
$page->assign_by_ref('locations', $locations);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment