I have strange problem with FrontEndUsers module when users have email as username.
When I edit some prperty of FrontEnd user from FrontEndUsers interface, the symbol "@" in they name became %40 in database field and user cannot login to system
I am not too often change users details but every time needs to came in to database and correct broken names with replace request, but this is not too good workaround.
Code: Select all
UPDATE `cms_module_feusers_users` SET `username` = REPLACE(`username`, '%40', '@')


