Report abuse

1
2
3
4
5
6
7
class ApplicationController < ActionController::Base
  def affiliate_check
    if affiliate = params[:affiliate]
      cookies[:affiliate] = { :value => affiliate, :expires => 1.week.from_now }
    end
  end
end