Fixed bug #672: Now tags input not 'slugify' the tags

stable
Jesús Espino 2014-08-18 13:11:09 +02:00
parent 25588422ae
commit 517d393bd7
1 changed files with 0 additions and 1 deletions

View File

@ -34,7 +34,6 @@ TagsDirective = ->
parser = (v) ->
return [] if not v
result = _(v.split(",")).map((x) -> _.str.trim(x))
.map((x) -> x.replace(/\s+/, "-"))
return result.value()