From 1ced030681066b2854fa0bf45fc6b10190fc31d8 Mon Sep 17 00:00:00 2001 From: Matt Rogers Date: Tue, 10 Jan 2012 11:20:01 -0600 Subject: [PATCH] properly filter passwords in the users controller --- app/controllers/users_controller.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb index 7b0eb8b7..77a9984a 100644 --- a/app/controllers/users_controller.rb +++ b/app/controllers/users_controller.rb @@ -1,4 +1,5 @@ class UsersController < ApplicationController + filter_parameter_logging "password" before_filter :admin_login_required, :only => [ :index, :show, :destroy ] skip_before_filter :login_required, :only => [ :new, :create ] skip_before_filter :check_for_deprecated_password_hash,