diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2010-04-29 15:19:19 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2010-04-29 15:19:19 +0000 |
commit | 488879d9cf63c608bff61ead48b4d55de244b4a4 (patch) | |
tree | 0b9a4157e31580c0ad3b6e8d54a1e30d14794cda /app/controllers/gantts_controller.rb | |
parent | e65c3cfc7df3da58071c8de158c98861dab7d852 (diff) | |
download | redmine-488879d9cf63c608bff61ead48b4d55de244b4a4.tar.gz redmine-488879d9cf63c608bff61ead48b4d55de244b4a4.zip |
Refactor: pull #query_statement_invalid up to ApplicationController.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3696 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers/gantts_controller.rb')
-rw-r--r-- | app/controllers/gantts_controller.rb | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/app/controllers/gantts_controller.rb b/app/controllers/gantts_controller.rb index 91312e8ae..3933577c5 100644 --- a/app/controllers/gantts_controller.rb +++ b/app/controllers/gantts_controller.rb @@ -7,6 +7,8 @@ class GanttsController < ApplicationController helper :projects helper :queries include QueriesHelper + helper :sort + include SortHelper include Redmine::Export::PDF def show @@ -42,15 +44,6 @@ class GanttsController < ApplicationController private - # Rescues an invalid query statement. Just in case... - # TODO: Refactor, move to ApplicationController with IssuesController - def query_statement_invalid(exception) - logger.error "Query::StatementInvalid: #{exception.message}" if logger - session.delete(:query) - sort_clear - render_error "An error occurred while executing the query and has been logged. Please report this error to your Redmine administrator." - end - # TODO: Refactor, duplicates IssuesController def find_optional_project @project = Project.find(params[:project_id]) unless params[:project_id].blank? |