mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-10-28 17:46:16 +01:00
fix: convert param to string in slugify
fixes adding users to privilege table
This commit is contained in:
@@ -351,7 +351,7 @@
|
|||||||
if (!str) {
|
if (!str) {
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
str = str.replace(utils.trimRegex, '');
|
str = String(str).replace(utils.trimRegex, '');
|
||||||
if (utils.isLatin.test(str)) {
|
if (utils.isLatin.test(str)) {
|
||||||
str = str.replace(utils.invalidLatinChars, '-');
|
str = str.replace(utils.invalidLatinChars, '-');
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -46,6 +46,12 @@ describe('Utility Methods', function () {
|
|||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('should work if a number is passed in', function (done) {
|
||||||
|
var slug = utils.slugify(12345);
|
||||||
|
assert.strictEqual(slug, '12345');
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
|
||||||
describe('username validation', function () {
|
describe('username validation', function () {
|
||||||
it('accepts latin-1 characters', function () {
|
it('accepts latin-1 characters', function () {
|
||||||
var username = "John\"'-. Doeäâèéë1234";
|
var username = "John\"'-. Doeäâèéë1234";
|
||||||
|
|||||||
Reference in New Issue
Block a user