*** empty log message ***

svn path=/trunk/boinc/; revision=11505
This commit is contained in:
David Anderson 2006-11-09 18:32:55 +00:00
parent ee7ec93c60
commit bc74af97ba
2 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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;