def generate_login_slug
self.login_slug = self.login.gsub(/[^a-z1-9]+/i, '-')
end
should read
def generate_login_slug
self.login_slug = self.login.gsub(/[^a-z0-9]+/i, '-')
end
The way it is now it substitutes 0's in a name for -
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CommunityEngine" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/communityengine?hl=en
-~----------~----~----~----~------~----~------~--~---