X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/c8ee1351049ef1bb4d7b50d071b2a96154266d1d..9afb533280268427cc86ab949525c9ff20605225:/app/models/trace.rb diff --git a/app/models/trace.rb b/app/models/trace.rb index 03dbeb0b3..7f2607b0f 100644 --- a/app/models/trace.rb +++ b/app/models/trace.rb @@ -20,15 +20,24 @@ class Trace < ActiveRecord::Base end def tagstring - return tags.collect {|tt| tt.tag}.join(" ") + return tags.collect {|tt| tt.tag}.join(", ") end def tagstring=(s) - self.tags = s.split().collect {|tag| - tt = Tracetag.new - tt.tag = tag - tt - } + if s.include?',' + self.tags = s.split(/\s*,\s*/).collect {|tag| + tt = Tracetag.new + tt.tag = tag + tt + } + else + #do as before for backwards compatibility: + self.tags = s.split().collect {|tag| + tt = Tracetag.new + tt.tag = tag + tt + } + end end def large_picture= (data)