X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/5677877ed140fc6f677f6bee541312717ab577ae..e39255644410f09d294970b6d67dbc90076b1355:/app/validators/utf8_validator.rb diff --git a/app/validators/utf8_validator.rb b/app/validators/utf8_validator.rb index dec6f4d96..0c6b3f594 100644 --- a/app/validators/utf8_validator.rb +++ b/app/validators/utf8_validator.rb @@ -2,7 +2,7 @@ # validation method to be included like any other validations methods # in the models definitions. this one checks that the named attribute # is a valid UTF-8 format string. -class UTF8Validator < ActiveModel::EachValidator +class Utf8Validator < ActiveModel::EachValidator def validate_each(record, attribute, value) record.errors.add(attribute, " is invalid UTF-8") unless UTF8.valid? value end