Bug #1638
closed
When editing a user and adding/editing the email address, trailing whitespace causes an input validation error.
Added by Brian Gupta over 12 years ago.
Updated over 12 years ago.
Description
We can probably be a bit smarter about this and ignore leading and trailing whitespace.
sure, this sounds like a simple before_save callback, with sometihng like
before_save :normalize_email
private
def normalize_email
self.email.strip! # or whatever is needed to fix the string
end
also worth mentioning that it would be great to have a simple unit test which compares the two scenarios (see test/unit/user.rb)
- Difficulty set to trivial
- Assignee set to Ohad Levy
- Target version set to 1.0
- Status changed from New to Closed
- % Done changed from 0 to 100
Also available in: Atom
PDF