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-94f89814c4dfmaster
parent
628c65c4cc
commit
61990c53b9
|
|
@ -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().
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue