]> git.openstreetmap.org Git - rails.git/commitdiff
Don't check the ACL unless we're creating a new user
authorTom Hughes <tom@compton.nu>
Wed, 8 Feb 2012 22:35:13 +0000 (22:35 +0000)
committerTom Hughes <tom@compton.nu>
Wed, 8 Feb 2012 22:35:13 +0000 (22:35 +0000)
app/controllers/user_controller.rb

index 77370c311317b03e73e96c5e6c1f8f6bbbd7203f..1d86c0524de727d0d9a7b27c727a87de78458a88 100644 (file)
@@ -38,7 +38,7 @@ class UserController < ApplicationController
       else
         render :action => 'terms'
       end
-    elsif Acl.match(request.remote_ip, params[:user][:email].split("@").last).where(:k => "no_account_creation").exists?
+    elsif params[:user] and Acl.match(request.remote_ip, params[:user][:email].split("@").last).where(:k => "no_account_creation").exists?
       render :action => 'blocked'
     else
       session[:referer] = params[:referer]