Fix broken users page when a username consists of digits only, fixes #5560

This commit is contained in:
Arthur Schiwon 2013-10-25 22:00:32 +02:00
parent e0f5fa9ea7
commit 3248b0e2be
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@
}
// sanitize
user = user.replace(/\//g,'');
user = String(user).replace(/\//g,'');
var $div = this;