Displaying 1 result from an estimated 1 matches for "scaffold_edit_fields".
2007 Jan 18
8
How can I find out which attribute is screwing up pluralize/singularize?
...ding_extensions/scaffolds/edit.rhtml
where line #3 raised:
wrong number of arguments (0 for 1)
Extracted source (around line #3):
1: <h1>Editing <%= @scaffold_singular_name.humanize.downcase %></h1>
2:
3: <%= scaffold_form(''update'',
:fields=>@scaffold_class.scaffold_edit_fields) %>
4:
5: <%= association_links %>
6:
RAILS_ROOT: /home/daniel/Documents/Projects/Eclipse/polybook/config/..
Thing is, this is great info: so, there''s a wrong number of arguments,
great! But for which method, and what kind of argument did it expect?
What was happening at the tim...