diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2012-02-22 09:59:53 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2012-02-22 09:59:53 +0100 |
commit | de65c404a3296925bb0c8c1b76aed262ad7ed335 (patch) | |
tree | c9bdb0eaee3689018e2129e8ea8a8b96a8d85178 | |
parent | 929f50815d7c0679b34ade1d75024d54dd35d057 (diff) | |
download | sonarqube-de65c404a3296925bb0c8c1b76aed262ad7ed335.tar.gz sonarqube-de65c404a3296925bb0c8c1b76aed262ad7ed335.zip |
Fix removal of columns in filters
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/controllers/filters_controller.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/controllers/filters_controller.rb b/sonar-server/src/main/webapp/WEB-INF/app/controllers/filters_controller.rb index 8f235349921..bb9e2e8a215 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/controllers/filters_controller.rb +++ b/sonar-server/src/main/webapp/WEB-INF/app/controllers/filters_controller.rb @@ -213,7 +213,6 @@ class FiltersController < ApplicationController if column.deletable? column.destroy redirect_to :action => 'edit', :id => filter.id - redirect_to :action => 'edit', :id => filter.id else flash[:error]='Unknown column' redirect_to :action => 'manage' |