[TRUNK][UPDATE]

- repaires ng-parties regex conditions for parameter 'name'

git-svn-id: https://svn.libreccm.org/ccm/trunk@4727 8810af33-2d31-482b-a856-94f89814c4df
master
tosmers 2017-05-10 18:09:42 +00:00
parent a27a938489
commit 3583e34978
1 changed files with 4 additions and 1 deletions

View File

@ -44,7 +44,10 @@ public class Party {
this.partyId = trunkParty.getID().longValue();
this.name = trunkParty.getName().
replace(" ", "_").
replace(".", "_");
replace(".", "_").
replace("/", "\\").
replace("(", "_").
replace(")", "_");
this.roleMemberships = new HashSet<>();