/ Published in: Rails
Expand |
Embed | Plain Text
# CHANGED: Initialize cart. def initialize_cart @cart = @request.session[:cart] ||= Cart.create end
You need to login to post a comment.
winson on 04/30/07
1 person have marked this snippet as a favorite
# CHANGED: Initialize cart. def initialize_cart @cart = @request.session[:cart] ||= Cart.create end
You need to login to post a comment.