summaryrefslogtreecommitdiffstats
path: root/web/lib/acctfuncs.inc.php
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2014-06-02 18:15:26 +0200
committerLukas Fleischer <archlinux@cryptocrack.de>2014-06-02 18:15:26 +0200
commitb30bb6f534e20f0a93a08c129ec41f7cc87e440a (patch)
tree0b0aaf0ebde8d97dce402f1a5cc7c8a10e1ba5b4 /web/lib/acctfuncs.inc.php
parent019014a3acb6e10af11140082dfc319bd9d44fb3 (diff)
parente018670607ce6491163fbefb8eb84eec8588bf7b (diff)
downloadaurweb-b30bb6f534e20f0a93a08c129ec41f7cc87e440a.tar.xz
Merge branch 'maint'
Diffstat (limited to 'web/lib/acctfuncs.inc.php')
-rw-r--r--web/lib/acctfuncs.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/lib/acctfuncs.inc.php b/web/lib/acctfuncs.inc.php
index 962ebb4..51ffec6 100644
--- a/web/lib/acctfuncs.inc.php
+++ b/web/lib/acctfuncs.inc.php
@@ -538,7 +538,7 @@ function valid_username($user) {
if (strlen($user) < USERNAME_MIN_LEN ||
strlen($user) > USERNAME_MAX_LEN) {
return false;
- } else if (!preg_match("/^[a-z0-9]+[.\-_]?[a-z0-9]+$/", $user)) {
+ } else if (!preg_match("/^[a-z0-9]+[.\-_]?[a-z0-9]+$/i", $user)) {
return false;
}