From b6234cbd2b60bbabbe44cf7440b39cb6d0c7c227 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Wed, 29 Jun 2016 23:17:14 +0300 Subject: [PATCH] fix error msg typo --- src/user/profile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/user/profile.js b/src/user/profile.js index 0cadfd6c1e..631d8d8f09 100644 --- a/src/user/profile.js +++ b/src/user/profile.js @@ -103,7 +103,7 @@ module.exports = function(User) { function isGroupTitleValid(next) { if (data.groupTitle === 'registered-users' || groups.isPrivilegeGroup(data.groupTitle)) { - next(new Error('[[error:invali-group-title]]')); + next(new Error('[[error:invalid-group-title]]')); } else { next(); }