Skip to content

Commit

Permalink
+ (CRM) Fixed the Person Merge to remove Mailing and Mapped flags fro…
Browse files Browse the repository at this point in the history
…m previous addresses. (Fixes #5503)
  • Loading branch information
MrUpsideDown committed Jul 20, 2023
1 parent 631dcee commit ca6efa7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions RockWeb/Blocks/Crm/PersonMerge.ascx.cs
Expand Up @@ -1019,6 +1019,9 @@ private void MergeAddresses( RockContext rockContext, Group primaryFamily )
currentTargetFamilyLocation.GroupLocationTypeValue = null;
currentTargetFamilyLocation.GroupLocationTypeValueId = prevLocType.Id;

currentTargetFamilyLocation.IsMailingLocation = false;
currentTargetFamilyLocation.IsMappedLocation = false;

newTargetFamilyLocation = new GroupLocation();
}
else
Expand Down

0 comments on commit ca6efa7

Please sign in to comment.