Bug in PPP Create due to incorrect handling of URL unsafe characters

git-svn-id: https://svn.libreccm.org/ccm/trunk@6147 8810af33-2d31-482b-a856-94f89814c4df
master
jensp 2019-07-06 11:32:43 +00:00
parent 628c65c4cc
commit 61990c53b9
1 changed files with 2 additions and 1 deletions

View File

@ -226,7 +226,8 @@ public class PublicPersonalProfileCreate extends PageCreate {
} }
private String createProfileUrl(final GenericPerson owner) { private String createProfileUrl(final GenericPerson owner) {
String profileUrl = owner.getSurname().toLowerCase();
String profileUrl = GenericPerson.urlSave(owner.getSurname().toLowerCase());
int counter = 1; int counter = 1;
final DataCollection profiles = SessionManager.getSession(). final DataCollection profiles = SessionManager.getSession().