]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/tracetag.rb
Ban usernames which match special URLs
[rails.git] / app / models / tracetag.rb
index 1b8ba2309de79cdeba32938b4ed2b283841f903f..00f195e69a1323b47448d2114c69b563f4dd4f96 100644 (file)
@@ -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