aboutsummaryrefslogtreecommitdiff
path: root/engine
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-10-08 10:18:52 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-10-08 10:18:52 +0000
commit161d44727c9e786f538e9715a566eee76bc7187a (patch)
tree12084a4fa754169f1b03236cede32f71bf4dbc0a /engine
parent31869a42ea4748bfc0ec5c74ca5ac8d2bd24955e (diff)
downloadelgg-161d44727c9e786f538e9715a566eee76bc7187a.tar.gz
elgg-161d44727c9e786f538e9715a566eee76bc7187a.tar.bz2
Allowing '.' in username, refs #415
git-svn-id: https://code.elgg.org/elgg/trunk@2220 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine')
-rw-r--r--engine/lib/users.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/users.php b/engine/lib/users.php
index a63996fef..fcddf252f 100644
--- a/engine/lib/users.php
+++ b/engine/lib/users.php
@@ -1006,7 +1006,7 @@
preg_match($blacklist, $username) ||
// Belts and braces TODO: Tidy into main unicode
- (strpos($username, '.')!==false) ||
+ //(strpos($username, '.')!==false) ||
(strpos($username, '/')!==false) ||
(strpos($username, '\\')!==false) ||
(strpos($username, '"')!==false) ||