Defect #7257
closed"Issues by" version links bad criterias
0%
Description
When following a link in the "Issues by" field set of a version page (whichever grouping type is selected), default criterias in the newly opened query page include issue status "open", which is not necessarily true.
Moreover, when grouping by author, if author is not part of project's members list then the criteria is Author is << Me >>.
Related issues
Updated by Etienne Massip almost 14 years ago
First point looks easy to solve (not a ruby dev, even less a redmine dev) :
Index: app/views/versions/_issue_counts.rhtml =================================================================== --- app/views/versions/_issue_counts.rhtml (revision 4686) +++ app/views/versions/_issue_counts.rhtml (working copy) @@ -19,6 +19,7 @@ :action => 'index', :project_id => version.project, :set_filter => 1, + :status_id => '*', :fixed_version_id => version, "#{criteria}_id" => count[:group]} %> </td>
Second one deserves to have its own issue.
Updated by Etienne Massip over 13 years ago
- Target version set to Candidate for next minor release
Updated by Jean-Philippe Lang over 13 years ago
Updated by Etienne Massip over 13 years ago
- Status changed from New to Resolved
- Target version changed from Candidate for next minor release to 1.2.0
Updated by Jean-Philippe Lang over 13 years ago
- Status changed from Resolved to Closed
Etienne Massip wrote:
Moreover, when grouping by author, if author is not part of project's members list then the criteria is Author is << Me >>.
This is not fixed and needs much more work. Will fix it later. Etienne, you can open an other ticket for that.
Updated by Etienne Massip over 13 years ago
There is already #4398 which I'll set as candidate for next major.