]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/application_controller.rb
Generate correct URLs for changeset feeds
[rails.git] / app / controllers / application_controller.rb
index 0412080fa3a9109faf02dc2e27fe7b0fc297332d..44307d482e90e7afaca8e01c15be347f8208b7b7 100644 (file)
@@ -247,9 +247,7 @@ class ApplicationController < ActionController::Base
       end
     end
 
-    I18n.locale = request.compatible_language_from(I18n.available_locales)
-
-    logger.info "Selected locale #{I18n.locale} from #{request.user_preferred_languages.inspect}"
+    I18n.locale = request.compatible_language_from(I18n.available_locales) || I18n.default_locale
 
     response.headers['Content-Language'] = I18n.locale.to_s
   end
@@ -368,6 +366,11 @@ private
     return [user, pass] 
   end 
 
+  # used by oauth plugin to get the current user
+  def current_user
+    @user
+  end
+
   # used by oauth plugin to set the current user
   def current_user=(user)
     @user=user