Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
CiviCRM Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Development
CiviCRM Core
Commits
927b3ade
Unverified
Commit
927b3ade
authored
4 years ago
by
Seamus Lee
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #19414 from spalmstr/Issue2307
Fix Issue 2307
parents
459192b0
6c5ddec6
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CRM/Contact/Form/Task/Map.php
+6
-1
6 additions, 1 deletion
CRM/Contact/Form/Task/Map.php
with
6 additions
and
1 deletion
CRM/Contact/Form/Task/Map.php
+
6
−
1
View file @
927b3ade
...
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment