
DM-tags: must add a space after , to be recognized
Reported by Rhyhann | December 6th, 2008 @ 01:06 PM
Hi. The bug I am reporting is entitled clear enough, but here is a report:
irb(main):011:0> Tag.all
=> []
irb(main):012:0> pr = Post.new
=> #<Post id=nil slug=nil name=nil content=nil frozen_tag_list=nil frozen_category_list=nil>
irb(main):013:0> pr.tag_list = "abc, def, ghi"
=> "abc, def, ghi"
irb(main):014:0> pr.tags
=> []
irb(main):015:0> pr.tag_list
=> ["abc", "def", "ghi"]
irb(main):016:0> pr.name = "Test on tags"
=> "Test on tags"
irb(main):017:0> pr.content = "abcdef"
=> "abcdef"
irb(main):018:0> pr.category_list = "Morocco"
=> "Morocco"
irb(main):019:0> pr.save
=> true
irb(main):020:0> Post.all
=> [#<Post id=74 slug="chaft" name="Chaft" content=<not loaded> frozen_tag_list="boun,dakh" frozen_category_list="niahaha">, #<Post id=75 slug="test-floun" name="Test floun" content=<not loaded> frozen_tag_list="how,moroccan,western sahara" frozen_category_list="Morocco,Sahara">, #<Post id=76 slug="chaft-boun-dakh" name="Chaft Boun Dakh" content=<not loaded> frozen_tag_list="benomar,hadak eddebarh" frozen_category_list="cole">, #<Post id=77 slug="thing" name="Thing" content=<not loaded> frozen_tag_list="ac,def,mn,op" frozen_category_list="Casablanca,Maroc">, #<Post id=78 slug="test-on-tags" name="Test on tags" content=<not loaded> frozen_tag_list="abc,def,ghi" frozen_category_list="Morocco">]
irb(main):021:0> Tag.all
=> [#<Tag id=1 name="abc">, #<Tag id=2 name="def">, #<Tag id=3 name="ghi">, #<Tag id=4 name="Morocco">]
irb(main):022:0> Post.tagged_with('abc')
=> [#<Post id=78 slug="test-on-tags" name="Test on tags" content=<not loaded> frozen_tag_list="abc,def,ghi" frozen_category_list="Morocco">]
Comments and changes to this ticket
-
Rhyhann December 6th, 2008 @ 01:19 PM
In fact, there was ne bug. I don't know where it comes, but the ", " is not required. Please delete this bug.
-
Dan Kubb (dkubb) December 6th, 2008 @ 01:51 PM
- State changed from unconfirmed to not-applicable
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile »