Guest User

Untitled

a guest
Apr 21st, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. if (forename.blank? && FIELD_FIRSTNAME_MANDATORY)
  2. errors.add(:forename, _("^can't be blank"))
  3. else
  4. unless forename.blank?
  5. errors.add(:forename, _("is too long (maximum is 128 characters)")) if forename.length > 128
  6. end
  7. end
Add Comment
Please, Sign In to add comment