From aba07a860f9583c6ee17e83f54b4002ceec50122 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sun, 9 Dec 2012 21:13:26 +0000 Subject: [PATCH] Rescue Query::StatementInvalid in TimelogController. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10973 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/controllers/timelog_controller.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/controllers/timelog_controller.rb b/app/controllers/timelog_controller.rb index ab4897d2c..61d72e3f3 100644 --- a/app/controllers/timelog_controller.rb +++ b/app/controllers/timelog_controller.rb @@ -30,6 +30,8 @@ class TimelogController < ApplicationController accept_rss_auth :index accept_api_auth :index, :show, :create, :update, :destroy + rescue_from Query::StatementInvalid, :with => :query_statement_invalid + helper :sort include SortHelper helper :issues