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