[TRUNK][UPDATE]
- repaires ng-parties regex conditions for parameter 'name' git-svn-id: https://svn.libreccm.org/ccm/trunk@4725 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
c6d4c5c88b
commit
a27a938489
|
|
@ -42,7 +42,9 @@ public class Party {
|
|||
|
||||
public Party(final com.arsdigita.kernel.Party trunkParty) {
|
||||
this.partyId = trunkParty.getID().longValue();
|
||||
this.name = trunkParty.getName();
|
||||
this.name = trunkParty.getName().
|
||||
replace(" ", "_").
|
||||
replace(".", "_");
|
||||
|
||||
this.roleMemberships = new HashSet<>();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue