Merge pull request #5562 from owncloud/fix5560
Fix broken users page when a username consists of digits only, fixes #55...
This commit is contained in:
commit
5fca709e94
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@
|
|||
}
|
||||
|
||||
// sanitize
|
||||
user = user.replace(/\//g,'');
|
||||
user = String(user).replace(/\//g,'');
|
||||
|
||||
var $div = this;
|
||||
|
||||
|
|
Loading…
Reference in a new issue