diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-01-02 08:47:07 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-01-02 08:47:07 +0000 |
commit | e3becc7c3c53aff0566cd862c13b0bd032da1169 (patch) | |
tree | 51158f62af5ca62a00308a84ce2eae986ccade22 /app/controllers/queries_controller.rb | |
parent | e7caec6e7d1ac9c67878562f53c4ad2ba1e82217 (diff) | |
download | redmine-e3becc7c3c53aff0566cd862c13b0bd032da1169.tar.gz redmine-e3becc7c3c53aff0566cd862c13b0bd032da1169.zip |
ActiveRecord::RecordNotFound exceptions handled more gracefully
git-svn-id: http://redmine.rubyforge.org/svn/trunk@133 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers/queries_controller.rb')
-rw-r--r-- | app/controllers/queries_controller.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/controllers/queries_controller.rb b/app/controllers/queries_controller.rb index 4bdd8aaa2..7f7f01fd3 100644 --- a/app/controllers/queries_controller.rb +++ b/app/controllers/queries_controller.rb @@ -45,5 +45,7 @@ private @project = @query.project # check if user is allowed to manage queries (same permission as add_query) authorize('projects', 'add_query') + rescue ActiveRecord::RecordNotFound + render_404 end end |