From d3e7c96eb70708d5a4ef97487f5919ce4d32805a Mon Sep 17 00:00:00 2001 From: Martin Linkhorst Date: Thu, 26 Jul 2012 17:51:41 +0200 Subject: [PATCH] fix minimum characters hint --- app/helpers/application_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index d4380da062..0f9a34d5cd 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -1115,6 +1115,6 @@ module ApplicationHelper end def password_complexity_requirements - "" + l(:text_caracters_minimum, :count => Setting.password_min_length) + "" + raw "" + l(:text_caracters_minimum, :count => Setting.password_min_length) + "" end end