diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-08-12 11:25:25 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-08-12 11:25:25 +0000 |
commit | e9ba8a4494228647a632c76a29bad4921cf20f9b (patch) | |
tree | 13cd15cafb4580e3c329b5f02d25cf0dad49225f /app/helpers | |
parent | 58ea44a4628326fc6fb2ed2192de0b90edc0e150 (diff) | |
download | redmine-e9ba8a4494228647a632c76a29bad4921cf20f9b.tar.gz redmine-e9ba8a4494228647a632c76a29bad4921cf20f9b.zip |
Changed AR error messages style (same as flash errors).
Fixed flash styles for IE6.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@610 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/application_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 2293fcdc0..cdf69d76c 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -211,7 +211,7 @@ module ApplicationHelper end content_tag("div", content_tag( - options[:header_tag] || "h2", lwr(:gui_validation_error, full_messages.length) + " :" + options[:header_tag] || "span", lwr(:gui_validation_error, full_messages.length) + ":" ) + content_tag("ul", full_messages.collect { |msg| content_tag("li", msg) }), "id" => options[:id] || "errorExplanation", "class" => options[:class] || "errorExplanation" |