Fix tag to remove ['0', '1'] from the form

This commit is contained in:
chris 2013-10-02 18:36:08 +08:00
parent 31ef12b3da
commit 06c48524fd
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ module OrbitTag
def tags=(tag_ids)
tag_ids = [tag_ids].flatten
tag_ids.delete('')
tag_ids.delete_if{|e| e.match(/^[0-1]$|^$/)}
ids = self.taggings.blank? ? [] : self.taggings.map{|t| t.tag.id}
tag_ids.each do |tag_id|
unless ids.include? tag_id