Hi Experts,
l have model called User
class User < ActiveRecord::Base
apply_simple_captcha
end
in view
<%= show_simple_captcha(:object=>“user”) %>
in controller
@user = User.fiind(params[:id])
if @user.valid_with_captcha?
if @user.update_attributes(params[:use])
--------
else
---------
end
else
--------------------
end
as per this code is working fine, but all the text which i’ve entered
in textfields are cleared, and shows error appropriate error like
first_name and last_name is blank but i feeded all the data correct
way except the captcha value, which shouldnt happen.
Plz help me guys, i’m stuck up with that
TIA,
Bala