summaryrefslogtreecommitdiff
path: root/users/app/controllers/users_base_controller.rb
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2013-08-28 11:53:58 +0200
committerAzul <azul@leap.se>2013-08-30 14:54:30 +0200
commit7bb1a16d4eee3eb3ef36c6f5b4fc7968e3da7dd6 (patch)
tree75df9def4e9289b5373cea6108616405896491e1 /users/app/controllers/users_base_controller.rb
parent060e06daa065f02b811dfe12850b101a62c12c8d (diff)
there's no need for User#find_by_param. clean it up
Diffstat (limited to 'users/app/controllers/users_base_controller.rb')
-rw-r--r--users/app/controllers/users_base_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/users/app/controllers/users_base_controller.rb b/users/app/controllers/users_base_controller.rb
index dc2fa16..9becf0d 100644
--- a/users/app/controllers/users_base_controller.rb
+++ b/users/app/controllers/users_base_controller.rb
@@ -7,7 +7,7 @@ class UsersBaseController < ApplicationController
protected
def fetch_user
- @user = User.find_by_param(params[:user_id] || params[:id])
+ @user = User.find(params[:user_id] || params[:id])
if !@user && admin?
redirect_to users_url, :alert => t(:no_such_thing, :thing => 'user')
elsif !admin? && @user != current_user