Foros de discusión

[RESOLVED] Screennames having uppercase

thumbnail
Corné ., modificado hace 15 años.

[RESOLVED] Screennames having uppercase

Liferay Legend Mensajes: 1313 Fecha de incorporación: 3/10/06 Mensajes recientes
Is there a possibility in using uppercasing in screennames?
In LR 52 whenever I create a mixedcase screenname it will be lowercased completely;

Its not in;
com.liferay.portal.security.auth.ScreenNameGenerator
com.liferay.portal.security.auth.ScreenNameValidator
com.liferay.portal.security.auth.LiberalScreenNameValidator

Does someone know where this could be found?

.... OK
for future reference then its in
com.liferay.portal.service.impl.UserLocalServiceImpl
public void updateScreenName(long userId, String screenName)
calls
screenName = getScreenName(screenName);
which normalizes with
friendlyURL = friendlyURL.toLowerCase();