Displaying 3 results from an estimated 3 matches for "picture_tag".
Did you mean:
picture_tags
2006 Jul 21
1
help appreciated on acts_as_taggable issue
Hi,
I have added acts_as_taggable to one of my models called Picture, I then
try to pick up some tags through the following code:
user = User.find(session[:user_id])
photo = Picture.new (@params["picture"])
>> photo.tag(@params["picture_tags"]) <<
user.pictures << photo
I''m trying to use the acts_as_taggable plugin, but I''m finding that my
tags
table is not getting the tags saved for the above line in question (>>
... <<).
However, if I do this instead:
user = User.find(session[:user_...
2006 Jul 18
0
acts_as_taggable problem with saving tags.
Hi,
I have the following code:
user = User.find(session[:user_id])
photo = Picture.new(@params["picture"])
>> photo.tag(@params["picture_tags"]) <<
user.pictures << photo
I''m trying to use the acts_as_taggable plugin, I''m finding that my tags
table is not getting the tags saved for the above line in question (>>
... <<).
However, if I do this instead:
user = User.find(session[:user_id]...
2006 Jul 20
0
acts_as_taggable
Hi,
I have added acts_as_taggable to one of my models called Picture, I then try
to pick up some tags through the following code:
user = User.find(session[:user_id])
photo = Picture.new(@params["picture"])
>> photo.tag(@params["picture_tags"]) <<
user.pictures << photo
I''m trying to use the acts_as_taggable plugin, but I''m finding that my tags
table is not getting the tags saved for the above line in question (>>
... <<).
However, if I do this instead:
user = User.find(session[:user_i...