]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/user_controller.rb
Use SecureRandom instead of the deprecated ActiveSupport::SecureRandom
[rails.git] / app / controllers / user_controller.rb
index 9ef1ab409e292750b89b22ad7cbf60a7fc7f1da0..fa93313b3df5a782b18172359970edeba02ef340 100644 (file)
@@ -48,7 +48,7 @@ class UserController < ApplicationController
       if params[:user] and params[:user][:openid_url] and @user.pass_crypt.empty?
         # We are creating an account with OpenID and no password
         # was specified so create a random one
-        @user.pass_crypt = ActiveSupport::SecureRandom.base64(16) 
+        @user.pass_crypt = SecureRandom.base64(16) 
         @user.pass_crypt_confirmation = @user.pass_crypt 
       end