fixes #102: Problems with some characters in tags

This commit is contained in:
albert
2011-10-03 18:37:22 -04:00
parent dd92082348
commit 96a1ebeed1

View File

@@ -118,7 +118,7 @@ class Tag < ActiveRecord::Base
end
def scan_tags(tags)
normalize(tags).gsub(/[,;*]/, "_").scan(/\S+/).uniq
normalize(tags).gsub(/[%,]/, "").scan(/\S+/).uniq
end
def parse_cast(object, type)