Log in

View Full Version : Registration plugin stops working after v3.7


malmazan
05-20-2008, 07:11 AM
Hi all :

I had a simple plugin that would automatically capitalize usernames at registration (I require registration with a full name).

This has stopped working when going from 3.6.8 to 3.7.0

It is a really simple piece of code that uses the userdata_presave hook
$username = ucwords(strtolower($this->fetch_field('username')));
$username_raw = $username;

Does anybody know why it does not work now and/or what I can do to fix it?

malmazan
05-21-2008, 08:30 PM
I just remembered I could never get that plugin to work and resorted to edit class_dm_user.php

If anybody can suggest a cleaner way to capitalize user names (I require full names) that would be greatly appreciated.