]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/user_controller.rb
Use send_data for GPX traces intead of monkey patching send_file
[rails.git] / app / controllers / user_controller.rb
index ea6e1a8d5d6fdbc5729f7e74e7f6d722f5b21e36..e418e103fdcd0cca186cd572c50b6ebb46779c83 100644 (file)
@@ -99,7 +99,7 @@ class UserController < ApplicationController
                                        "lat" => m[2],
                                        "lon" => m[3] }.merge(editor))
             end
-          rescue
+          rescue StandardError
             # Use default
           end
 
@@ -220,6 +220,8 @@ class UserController < ApplicationController
       flash.now[:notice] = render_to_string :partial => "auth_association"
     else
       check_signup_allowed
+
+      self.current_user = User.new
     end
   end
 
@@ -721,7 +723,7 @@ class UserController < ApplicationController
 
           begin
             Notifier.email_confirm(user, user.tokens.create).deliver_now
-          rescue
+          rescue StandardError
             # Ignore errors sending email
           end
         else