From 6a4bcf8ab88fad6a0661cf72b6a74f541962f6a0 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Tue, 26 Aug 2014 14:57:20 -0400 Subject: [PATCH] fixed password error message --- public/src/forum/register.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/src/forum/register.js b/public/src/forum/register.js index 8899fd161a..a332aa7c6f 100644 --- a/public/src/forum/register.js +++ b/public/src/forum/register.js @@ -106,7 +106,7 @@ define('forum/register', function() { if (password.length < config.minimumPasswordLength) { showError(password_notify, '[[user:change_password_error_length]]'); } else if (!utils.isPasswordValid(password)) { - showError(password_notify, '[[user:change_password_error_]]'); + showError(password_notify, '[[user:change_password_error]]'); } else { showSuccess(password_notify, successIcon); }