FIX: category settings shouldn't limit tag input size

This commit is contained in:
Neil Lalonde 2016-07-19 12:30:02 -04:00
parent 4e4b1cb4a3
commit fa9d8bd8bd

View File

@ -313,7 +313,7 @@ SQL
end
def allowed_tags=(tag_names_arg)
DiscourseTagging.add_or_create_tags_by_name(self, tag_names_arg)
DiscourseTagging.add_or_create_tags_by_name(self, tag_names_arg, {unlimited: true})
end
def allowed_tag_groups=(group_names)