Browse Source

Reverted r9464 that broke a test. Project identifiers or ids can be used as parameters.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9465 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/2.0.0
Jean-Philippe Lang 12 years ago
parent
commit
9305c84093
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      app/controllers/watchers_controller.rb

+ 1
- 1
app/controllers/watchers_controller.rb View File

@@ -109,7 +109,7 @@ private
@watched = klass.find(params[:object_id])
@project = @watched.project
elsif params[:project_id]
@project = Project.visible.find_by_identifier(params[:project_id])
@project = Project.visible.find(params[:project_id])
end
rescue
render_404

Loading…
Cancel
Save