Browse Source

Adds missing visibility scope.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3866 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/1.1.0
Jean-Philippe Lang 14 years ago
parent
commit
fe63eefc1f
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      app/controllers/versions_controller.rb

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

@@ -27,7 +27,7 @@ class VersionsController < ApplicationController
helper :projects
def show
@issues = @version.fixed_issues.find(:all,
@issues = @version.fixed_issues.visible.find(:all,
:include => [:status, :tracker, :priority],
:order => "#{Tracker.table_name}.position, #{Issue.table_name}.id")
end

Loading…
Cancel
Save