diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-01-14 20:22:36 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-01-14 20:22:36 +0000 |
commit | 7d0b1b383009dddb535e288f8cbf38b1aa8fb2aa (patch) | |
tree | ce670b9dcb430d24349bbc3fc9b4fbc586411890 /app/controllers | |
parent | a81953ef84639e37934ed4fc8a72b4466daeda1a (diff) | |
download | redmine-7d0b1b383009dddb535e288f8cbf38b1aa8fb2aa.tar.gz redmine-7d0b1b383009dddb535e288f8cbf38b1aa8fb2aa.zip |
Respond with 404 instead of 500 when revision/entry is not found in the repository (#7307).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4710 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/repositories_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/repositories_controller.rb b/app/controllers/repositories_controller.rb index 3e4584ead..72104d575 100644 --- a/app/controllers/repositories_controller.rb +++ b/app/controllers/repositories_controller.rb @@ -226,7 +226,7 @@ class RepositoriesController < ApplicationController end def show_error_not_found - render_error l(:error_scm_not_found) + render_error :message => l(:error_scm_not_found), :status => 404 end # Handler for Redmine::Scm::Adapters::CommandFailed exception |