Hello,
I use acts_as_taggable_on_steroids, for tagging and I get this error:
“NoMethodError (undefined method +' for #<TagList:0x3546e94 @names=["kk"]>): .//app/controllers/user_photos_controller.rb:83:in
add_tag’”
The code in the controller is:
def add_tag
@photo = @logged_in_user.photos.find(params[:id])
83 @photo.tag_list += ‘,’ + params[:tag][:name]
@photo.save
@new_tag = @photo.reload.tags.last
end
Please advise on what could the problem be, as until now I tried
everything I knew and search the forum and net for any ideas and found
nothing to help.