]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/tracetag.rb
Remove multiline regular expression anchors from validations
[rails.git] / app / models / tracetag.rb
index d30d9d5ab3e7da3fb8a66ebbeb1a443aa47fb56a..58d1d782f3a35e198f2a25b488fca215e28ff5a3 100644 (file)
@@ -1,8 +1,10 @@
 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