PDA

View Full Version : Profile field minimum value


philthyphillup
03-24-2011, 01:52 AM
4.x.x

I was wondering how hard it would be to add a function to profile fields that will require a set minimum length of characters. Or is there already a mod that will add this feature? Thanks for any help!

BirdOPrey5
03-25-2011, 09:35 PM
In the user profile field manager there is a box near the end for a regular expression.

Enter this short code into that box:

.{3,}

Yes it starts with a period.

That should force the user to enter at least 3 characters.

HMBeaty
03-25-2011, 09:37 PM
In the user profile field manager there is a box near the end for a regular expression.

Enter this short code into that box:

.{3,}
Yes it starts with a period.

That should force the user to enter at least 3 characters.
Awesome, thanks :)

philthyphillup
03-26-2011, 01:42 AM
Thanks! That's very helpful!