aboutsummaryrefslogtreecommitdiffstats
path: root/include/identity.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-08-27 17:19:52 -0700
committerfriendica <info@friendica.com>2013-08-27 17:19:52 -0700
commitb77eaebb3a424247ca3fc7bef5c79b775a2db0e2 (patch)
tree68a455490007854123f816fc67309a8b2976a516 /include/identity.php
parentc8e27b54ecbbe2e22919d51d8d6f646977a8452c (diff)
downloadvolse-hubzilla-b77eaebb3a424247ca3fc7bef5c79b775a2db0e2.tar.gz
volse-hubzilla-b77eaebb3a424247ca3fc7bef5c79b775a2db0e2.tar.bz2
volse-hubzilla-b77eaebb3a424247ca3fc7bef5c79b775a2db0e2.zip
force webbies to lowercase
Diffstat (limited to 'include/identity.php')
-rw-r--r--include/identity.php2
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);