I had a user sign up with lowercase first and last name.
It would be nice if the core files for first and last name were changed to include a ucfirst().
Could this be done in the join processor? Function registerMember() calls the profile information for a username check...After the line:
$aProfile1 = $this->oPF->getProfileFromValues($this->aValues[0]);
Can I insert something like:
$aProfile1['FirstName'] = ucfirst($aProfile1['FirstName'])
$aProfile1['LastName'] = ucfirst($aProfile1['LastName'])
Thanks in advance,
Ace