Displaying 1 result from an estimated 1 matches for "account_prefs_sav".
Did you mean:
  account_prefs_saved
  
2006 Jan 27
1
Multiple Database write question
...ms[:post][:password]
		else
			notice += "Your passwords don''t match!"
		end
	end
	if not notice.empty?
		flash[:notice] = notice
		redirect_back_or_default :controller => "podcasts"
	else
		if not @updateuser.nil? and @updateuser.save
			flash[:notice] = _(''account_prefs_saved'')
			redirect_back_or_default :controller => "articles"
			@user = @updateuser
		else
			flash.now[:notice] = "An error occured while saving your preferences"
			redirect_back_or_default :controller => "articles"
		end
	end
end
and my model has the fo...