X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/783b5e3729228908d7404ae7404af1023501a906..5677877ed140fc6f677f6bee541312717ab577ae:/app/validators/utf8_validator.rb diff --git a/app/validators/utf8_validator.rb b/app/validators/utf8_validator.rb index 0c6b3f594..dec6f4d96 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