mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-04-10 22:14:35 -04:00
Merge pull request #3064 from fantasticfears/fix-user-card-number
FIX: user card can't expand when the username is number
This commit is contained in:
commit
97c1de2040
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ export default ObjectController.extend({
|
|||
|
||||
show: function(username, target) {
|
||||
// XSS protection (should be encapsulated)
|
||||
username = username.replace(/[^A-Za-z0-9_]/g, "");
|
||||
username = username.toString().replace(/[^A-Za-z0-9_]/g, "");
|
||||
var url = "/users/" + username;
|
||||
|
||||
// Don't show on mobile
|
||||
|
|
Loading…
Add table
Reference in a new issue