Skip to content
Snippets Groups Projects
Commit 6c5ddec6 authored by spalmstrom's avatar spalmstrom
Browse files

Fix Issue 2307

parent 459192b0
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