Fixed authentication when User is deleted during session.

This commit is contained in:
benni 2012-08-24 15:20:58 +02:00
parent 7bc23698d1
commit 2860a3ca44
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class ApplicationController < ActionController::Base
# check if there is a valid session and return the logged-in user (its object)
if session[:user_id] and params[:foodcoop]
# for shared-host installations. check if the cookie-subdomain fits to request.
@current_user ||= User.find(session[:user_id]) if params[:foodcoop] == Foodsoft.env
@current_user ||= User.find_by_id(session[:user_id]) if params[:foodcoop] == Foodsoft.env
end
end