Displaying 1 result from an estimated 1 matches for "illustrat".
Did you mean:
illustrate
2006 Dec 15
4
Why won't Rails update my object attributes?
...image saving stuff
unless params[:image][:data].blank?
if @person.image
@image = @person.image
@image.data = params[:image][:data]
@image.save
else
@image = Image.create(:data => params[:image][:data])
@image.illustratable = @person
@image.save
end
end
flash[:notice] = ''Info successfully updated.''
redirect_to :action => ''show'', :id => @person
end
end
---Development.log---
Processing PeopleController#edit [POST]
Session ID:...