Hi everybody, I'm from Turkey
I added new custom profile field with folloving settings:
Title = surname,
Single line text,
Field Required= No but display at registration,
Regular Expression = ^[a-zA-]+\s{1}[a-zA-]+$
My problem is Regexp prevents registration process even "Field Required" = No...
Is there a solution for this situation ?
Thanks
--------------- Added [DATE]1260139769[/DATE] at [TIME]1260139769[/TIME] ---------------
I though that this is a bug
I searched class files found dm_user class is related custom fields.
Found this line
PHP Code:
// text box / text area
I move
PHP Code:
$regex_check = true;
value from the end of this section to the beginning of same section.
(After the first if)
Then I add "if" phrase to the end of this section.
PHP Code:
if (($profilefield['required'] == 0 OR $profilefield['required'] == 2) AND $value === false AND $verify)
{
$regex_check = false;
}
Now it works.
If really it was a bug, so here is the solution

Wait for fix...