summaryrefslogtreecommitdiffstats
path: root/app/controllers
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-08-31 12:03:37 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-08-31 12:03:37 +0000
commit751c0b0813e17e29eb1872294a0a15d47414a16e (patch)
tree9736ca3d84ecdc8bd12247c58b8b6059795ab6c1 /app/controllers
parent08653afa2dd26cb5c3ca2663caffdcba3917a8d8 (diff)
downloadredmine-751c0b0813e17e29eb1872294a0a15d47414a16e.tar.gz
redmine-751c0b0813e17e29eb1872294a0a15d47414a16e.zip
remove trailing white-spaces from app/controllers/project_enumerations_controller.rb.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6894 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/project_enumerations_controller.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/project_enumerations_controller.rb b/app/controllers/project_enumerations_controller.rb
index 0b15887fa..75e4a61aa 100644
--- a/app/controllers/project_enumerations_controller.rb
+++ b/app/controllers/project_enumerations_controller.rb
@@ -1,7 +1,7 @@
class ProjectEnumerationsController < ApplicationController
before_filter :find_project_by_project_id
before_filter :authorize
-
+
def update
if request.put? && params[:enumerations]
Project.transaction do
@@ -11,7 +11,7 @@ class ProjectEnumerationsController < ApplicationController
end
flash[:notice] = l(:notice_successful_update)
end
-
+
redirect_to :controller => 'projects', :action => 'settings', :tab => 'activities', :id => @project
end