I'm using acts-as-taggable-on in my application and I want to be able to use tag names that contain commas such as "Ben, Jerry." However, when I put something like '"Ben, Jerry", Bob, Bill' in the tag list, it gets returned as "Ben, Jerry, Bob, Bill."

If I go into the database and manually change the name of one of the tags to "Ben, Jerry" then when I open the object, the tag list shows up as '"Ben, Jerry", Bob, Bill' but if I save that it gets returned as "Ben, Jerry, Bob, Bill"

Am I doing something wrong or is acts-as-taggable-on not capable of saving tags with commas by default?

link|improve this question

62% accept rate
3  
Does this answer your question? stackoverflow.com/questions/4591648/… – Devin M Jun 17 '11 at 17:08
feedback

1 Answer

up vote 0 down vote accepted

Change your delimiter to a semi-colon:

ActsAsTaggableOn::TagList.delimiter = '; '
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.