Displaying 1 result from an estimated 1 matches for "updateyourp".
Did you mean:
updateyourpic
2006 Feb 16
1
file_column problem
...iveRecord::Base
file_column :image, :magick => { :geometry => "80x80>" }
attr_accessor :new_password
... rest of class
3. In my controller I have the following code:
# loads up the form
def yourpic
@user = User.new(session[:user])
end
# handles the form
def updateyourpic
@user = User.new(@params[:user])
redirect_to :action => ''account'', :id => @user
end
4. Form looks like this:
<%= form_tag({ :action => ''updateyourpic'' , :id => @user }, :multipart
=> true) %>
<%= render_partial '...