Frederick Cheung wrote:
> On Jan 13, 4:15�am, Chris Olsen <[email protected]>
> wrote:
>> Here is the form.
>>
>> - form_tag "/admin/users/password" �do
>> � %fieldset
>> � � = form_field("Password", :tip => "required") { password_field
>> :password, nil, :size => 15 }
>> � � = form_field("Password Confirmation", :tip => "required") {
>> password_field :password_confirmation, nil, :size => 15 }
>>
> 
> Looking at the params that are submitted would probably tell you why.
> You're abusing password_field by passing nil as the second argument.
> You could either use form builders, form for etc... use password_field
> properly (ie first parameter is the name of an instance variable, 2nd
> is a method name) or use password_field_tag.
> 
> Fred

That would be it.  What threw me was that when debugging things I could 
see the password and pwc set within the model, both before and after the 
validation, but it would continue saying that it wasn't there.

Thanks for the help Fred.
-- 
Posted via http://www.ruby-forum.com/.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to