X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/1340fca8f17e4e3cce211e6eafed18cde7f57386..c83778df8ca3cb13aecaceab2a45b9c177b0331f:/app/models/tracetag.rb diff --git a/app/models/tracetag.rb b/app/models/tracetag.rb index 1b8ba2309..00f195e69 100644 --- a/app/models/tracetag.rb +++ b/app/models/tracetag.rb @@ -1,10 +1,8 @@ class Tracetag < ActiveRecord::Base self.table_name = "gpx_file_tags" - validates_format_of :tag, :with => /^[^\/;.,?]*$/ + validates_format_of :tag, :with => /\A[^\/;.,?]*\z/ validates_length_of :tag, :within => 1..255 - attr_accessible :tag - belongs_to :trace, :foreign_key => 'gpx_id' end