Hi Josh,
There is no way to change this with a simple set of a property. What do you think to open a improvement issue on support.liferay.com?
If you have urgency you can change the following line
String login = LoginAction.getLogin(request, "login", company);
of the html/portlet/login/view.jsp file to
String login = LoginAction.getLogin(request, "login", company);
if (Validator.isNotNull(login) && login.startsWith(StringPool.AT)) {
login= StringPool.BLANK;
}
I think this will solved your needs
Regards
Please sign in to flag this as inappropriate.