diff options
Diffstat (limited to 'modules/user/user.js')
-rw-r--r-- | modules/user/user.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/user.js b/modules/user/user.js index 44c00f344..73af27e5d 100644 --- a/modules/user/user.js +++ b/modules/user/user.js @@ -168,7 +168,7 @@ Drupal.evaluatePasswordStrength = function (password, translate) { // Assemble the final message. msg = translate.hasWeaknesses + '<ul><li>' + msg.join('</li><li>') + '</li></ul>'; - return { strength: strength, message: msg, indicatorText: indicatorText } + return { strength: strength, message: msg, indicatorText: indicatorText }; }; |