mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=11505
This commit is contained in:
parent
ee7ec93c60
commit
bc74af97ba
|
@ -12471,3 +12471,10 @@ David 9 Nov 2006
|
|||
clientgui/
|
||||
AdvancedFrame.cpp
|
||||
ViewResources.cpp
|
||||
|
||||
David 9 Nov 2006
|
||||
- manager: fix regexp for email address check
|
||||
(remove / at start and end).
|
||||
|
||||
clientgui/
|
||||
ValidateEmailAddress.cpp
|
||||
|
|
|
@ -66,7 +66,7 @@ bool CValidateEmailAddress::Validate(wxWindow *parent) {
|
|||
|
||||
// Regular Expression from Frank S. Thomas
|
||||
wxRegEx reEmail(
|
||||
wxT("/^([^@]+)@([^@\\.]+)\\.([^@]{2,})$/"));
|
||||
wxT("^([^@]+)@([^@\\.]+)\\.([^@]{2,})$"));
|
||||
|
||||
if (val.Length() == 0) {
|
||||
ok = FALSE;
|
||||
|
|
Loading…
Reference in New Issue