diff options
author | friendica <info@friendica.com> | 2013-08-27 17:19:52 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-27 17:19:52 -0700 |
commit | b77eaebb3a424247ca3fc7bef5c79b775a2db0e2 (patch) | |
tree | 68a455490007854123f816fc67309a8b2976a516 /include | |
parent | c8e27b54ecbbe2e22919d51d8d6f646977a8452c (diff) | |
download | volse-hubzilla-b77eaebb3a424247ca3fc7bef5c79b775a2db0e2.tar.gz volse-hubzilla-b77eaebb3a424247ca3fc7bef5c79b775a2db0e2.tar.bz2 volse-hubzilla-b77eaebb3a424247ca3fc7bef5c79b775a2db0e2.zip |
force webbies to lowercase
Diffstat (limited to 'include')
-rw-r--r-- | include/identity.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/identity.php b/include/identity.php index 1658669d6..8db6355c0 100644 --- a/include/identity.php +++ b/include/identity.php @@ -81,7 +81,7 @@ function create_identity($arr) { return $ret; } - $nick = trim($arr['nickname']); + $nick = mb_strtolower(trim($arr['nickname'])); $name = escape_tags($arr['name']); $pageflags = ((x($arr,'pageflags')) ? intval($arr['pageflags']) : PAGE_NORMAL); |