Commit eb9886df authored by Margaux Clerc's avatar Margaux Clerc
Browse files

accept in Wizzard usernames with digits

parent eea8bd18
No related merge requests found
Showing with 1 addition and 1 deletion
...@@ -59,7 +59,7 @@ static int all_account_information_entered(GtkWidget *w) { ...@@ -59,7 +59,7 @@ static int all_account_information_entered(GtkWidget *w) {
if (gtk_entry_get_text_length(username) > 0 && if (gtk_entry_get_text_length(username) > 0 &&
gtk_entry_get_text_length(domain) > 0 && gtk_entry_get_text_length(domain) > 0 &&
g_regex_match_simple("^[a-zA-Z]+[a-zA-Z0-9.\\-_]{2,}$", gtk_entry_get_text(username), 0, 0) && g_regex_match_simple("^[a-zA-Z0-9]+[a-zA-Z0-9.\\-_]{2,}$", gtk_entry_get_text(username), 0, 0) &&
g_regex_match_simple("^(sip:)?([a-zA-Z0-9]+([\\.-][a-zA-Z0-9]+)*)$", gtk_entry_get_text(domain), 0, 0)) { g_regex_match_simple("^(sip:)?([a-zA-Z0-9]+([\\.-][a-zA-Z0-9]+)*)$", gtk_entry_get_text(domain), 0, 0)) {
return 1; return 1;
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment