mirror of
https://github.com/friendica/friendica
synced 2024-11-10 04:22:54 +00:00
added forgotten trim
This commit is contained in:
parent
72638acac3
commit
a49e094308
1 changed files with 1 additions and 0 deletions
|
@ -323,6 +323,7 @@ class User
|
|||
}
|
||||
// check if the nickname is in the list of blocked nicknames
|
||||
$forbidden = explode(',', $forbidden_nicknames);
|
||||
$forbidden = array_map('trim', $forbidden);
|
||||
if (in_array(strtolower($nickname), $forbidden)) {
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue