2012-01-30 20:39:34 +00:00
|
|
|
# -*- encoding : utf-8 -*-
|
2011-03-31 00:52:34 +01:00
|
|
|
ActionView::Base.field_error_proc = Proc.new do |html_tag, instance|
|
|
|
|
if html_tag =~ /<label/
|
|
|
|
%|<div class="fieldWithErrors">#{html_tag} <span class="error">#{[instance.error_message].join(', ')}</span></div>|.html_safe
|
|
|
|
else
|
|
|
|
html_tag
|
|
|
|
end
|
2012-01-30 20:39:34 +00:00
|
|
|
end
|