diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-10-12 22:57:15 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-10-12 22:57:15 +0000 |
commit | 3bda16f82580b41c052a14f9401fb1601f4d0669 (patch) | |
tree | 60f5e6f2bf886271d6635127c4beaaf0b1d93f0e /app | |
parent | 7b5d15eca8107240ddfbf4bfbaf6f8e6c07dbece (diff) | |
download | redmine-3bda16f82580b41c052a14f9401fb1601f4d0669.tar.gz redmine-3bda16f82580b41c052a14f9401fb1601f4d0669.zip |
remove trailing white-spaces from app/controllers/issue_categories_controller.rb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10622 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/issue_categories_controller.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/issue_categories_controller.rb b/app/controllers/issue_categories_controller.rb index e314856e1..89afde13d 100644 --- a/app/controllers/issue_categories_controller.rb +++ b/app/controllers/issue_categories_controller.rb @@ -23,7 +23,7 @@ class IssueCategoriesController < ApplicationController before_filter :find_project_by_project_id, :only => [:index, :new, :create] before_filter :authorize accept_api_auth :index, :show, :create, :update, :destroy - + def index respond_to do |format| format.html { redirect_to :controller => 'projects', :action => 'settings', :tab => 'categories', :id => @project } @@ -92,7 +92,7 @@ class IssueCategoriesController < ApplicationController def destroy @issue_count = @category.issues.size - if @issue_count == 0 || params[:todo] || api_request? + if @issue_count == 0 || params[:todo] || api_request? reassign_to = nil if params[:reassign_to_id] && (params[:todo] == 'reassign' || params[:todo].blank?) reassign_to = @project.issue_categories.find_by_id(params[:reassign_to_id]) |