]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/user_controller.rb
Look up email addresses case insensitively for password resets
[rails.git] / app / controllers / user_controller.rb
index ce0122957dfc1083629372752d7e01191ebd3c1a..c9983cc855807f1fa343ecc1fedc4a5909bb8468 100644 (file)
@@ -201,7 +201,15 @@ class UserController < ApplicationController
     @title = t 'user.lost_password.title'
 
     if params[:user] and params[:user][:email]
     @title = t 'user.lost_password.title'
 
     if params[:user] and params[:user][:email]
-      user = User.visible.where(:email => params[:user][:email]).first
+      user = User.visible.find_by_email(params[:user][:email])
+
+      if user.nil?
+        users = User.visible.where("LOWER(email) = LOWER(?)", params[:user][:email])
+
+        if users.count == 1
+          user = users.first
+        end
+      end
 
       if user
         token = user.tokens.create
 
       if user
         token = user.tokens.create