X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/127880a73fa461400c53b29c98721e34660bca5e..63885889091c57a19ad45455a7a6642b86d17d5d:/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