Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
9fe3d9c4
Commit
9fe3d9c4
authored
Jul 26, 2003
by
Dries
Browse files
- Fixed bug in user_validate_name(): . (dot) should be allowed for DA to work. Fixes bug
#107
.
parent
30337a7d
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/user.module
View file @
9fe3d9c4
...
...
@@ -181,7 +181,7 @@ function user_validate_name($name) {
if
(
ereg
(
"^ "
,
$name
))
return
t
(
"The username cannot begin with a space."
);
if
(
ereg
(
"
\$
"
,
$name
))
return
t
(
"The username cannot end with a space."
);
if
(
ereg
(
" "
,
$name
))
return
t
(
"The username cannot contain multiple spaces in a row."
);
if
(
ereg
(
"[^ a-zA-Z0-9@-
@
]"
,
$name
))
return
t
(
"The username contains an illegal character."
);
if
(
ereg
(
"[^ a-zA-Z0-9@
_\.\
-]"
,
$name
))
return
t
(
"The username contains an illegal character."
);
if
(
ereg
(
'@'
,
$name
)
&&
!
eregi
(
'@([0-9a-z](-?[0-9a-z])*\.)+[a-z]{2}([zmuvtg]|fo|me)?$'
,
$name
))
return
t
(
"The username is not a valid authentication ID."
);
if
(
strlen
(
$name
)
>
56
)
return
t
(
"The username '%name' is too long: it must be less than 56 characters."
,
array
(
"%name"
=>
$name
));
}
...
...
modules/user/user.module
View file @
9fe3d9c4
...
...
@@ -181,7 +181,7 @@ function user_validate_name($name) {
if
(
ereg
(
"^ "
,
$name
))
return
t
(
"The username cannot begin with a space."
);
if
(
ereg
(
"
\$
"
,
$name
))
return
t
(
"The username cannot end with a space."
);
if
(
ereg
(
" "
,
$name
))
return
t
(
"The username cannot contain multiple spaces in a row."
);
if
(
ereg
(
"[^ a-zA-Z0-9@-
@
]"
,
$name
))
return
t
(
"The username contains an illegal character."
);
if
(
ereg
(
"[^ a-zA-Z0-9@
_\.\
-]"
,
$name
))
return
t
(
"The username contains an illegal character."
);
if
(
ereg
(
'@'
,
$name
)
&&
!
eregi
(
'@([0-9a-z](-?[0-9a-z])*\.)+[a-z]{2}([zmuvtg]|fo|me)?$'
,
$name
))
return
t
(
"The username is not a valid authentication ID."
);
if
(
strlen
(
$name
)
>
56
)
return
t
(
"The username '%name' is too long: it must be less than 56 characters."
,
array
(
"%name"
=>
$name
));
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment