error_messages was removed from Rails
Reported by Brian Michalski | June 6th, 2010 @ 04:55 PM
Again, fix a rails beta upgrading bug...
DEPRECATION WARNING: f.error_messages was removed from Rails and
is now available as a plugin. Please install it with rails
plugin install git://github.com/rails/dynamic_form.git
.
I don't see a need for the plugin, we can replace the error message code with the new scaffold like:
<% if @point.errors.any? %>
<h2><%= pluralize(@point.errors.count, "error") %> prohibited this point from being saved:</h2>
<ul>
<% @point.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
Comments and changes to this ticket
-
Brian Michalski June 6th, 2010 @ 05:15 PM
- State changed from open to resolved
(from [b40c8e50fdceb295b7435971eeda6be7d28cf84c]) Fixing error_messages being removed from rails. [#97 state:resolved responsible:"Brian Michalski"]] http://github.com/wtg/concerto/commit/b40c8e50fdceb295b7435971eeda6...
-
Brian Michalski June 1st, 2012 @ 08:31 PM
- Milestone order changed from 0 to 0
(from [94da444cba6ee4b66cd5e578c37cc6c1005b38a7]) use cancan methods and only set membership if you're logged in and have made a request. closes #97 https://github.com/concerto/concerto/commit/94da444cba6ee4b66cd5e57...
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป
Concerto is an open source digital signage system that makes it easy to engage a large community of people with graphical and text-based announcements, bulletins, and other messages... but enough about us, you came here to get involved.
<br />
If you think you've <b>found a bug in Concerto</b>, please click 'Create new ticket' and let us know about it.
<br />
Looking to peek at our source code? Head to <a href="https://github.com/concerto/concerto_v1">https://github.com/concerto/concerto_v1</a> (Concerto version 1) or <a href="https://github.com/concerto/concerto">https://github.com/concerto/concerto</a> (Concerto version 2).
<br />
Our getting started guide is available here: <a href="https://github.com/concerto/concerto/wiki/Getting-Involved">https://github.com/concerto/concerto/wiki/Getting-Involved</a>.
People watching this ticket
Referenced by
- 97 error_messages was removed from Rails (from [b40c8e50fdceb295b7435971eeda6be7d28cf84c]) Fixing ...