mirror of
https://github.com/discourse/discourse.git
synced 2026-08-13 14:35:08 -05:00
FIX: Allow trailing _ because we used to.
This commit is contained in:
@@ -75,7 +75,7 @@ class UsernameValidator
|
||||
|
||||
def username_last_char_valid?
|
||||
return unless errors.empty?
|
||||
if username[-1] =~ /[^A-Za-z0-9]/
|
||||
if username[-1] =~ /[^A-Za-z0-9_]/
|
||||
self.errors << I18n.t(:'user.username.must_end_with_alphanumeric')
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user