Actions
Bug #1638
closedWhen editing a user and adding/editing the email address, trailing whitespace causes an input validation error.
Description
We can probably be a bit smarter about this and ignore leading and trailing whitespace.
Updated by Ohad Levy over 12 years ago
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
Updated by Ohad Levy over 12 years ago
also worth mentioning that it would be great to have a simple unit test which compares the two scenarios (see test/unit/user.rb)
Updated by Ohad Levy over 12 years ago
- Assignee set to Ohad Levy
- Target version set to 1.0
Updated by Ohad Levy over 12 years ago
- Status changed from New to Closed
- % Done changed from 0 to 100
Applied in changeset fe728c743680f154173c781a47f0467eb35a7a22.
Actions