From 8fdc521aa5b7109ce129afcd53b2a17bd333b17f Mon Sep 17 00:00:00 2001 From: Brad Beattie Date: Fri, 15 May 2009 10:05:06 -0700 Subject: [PATCH] Fixing bug where issue growth graph showed all projects instead of subprojects --- app/controllers/graphs_controller.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/app/controllers/graphs_controller.rb b/app/controllers/graphs_controller.rb index b2843eb..98c0b3b 100644 --- a/app/controllers/graphs_controller.rb +++ b/app/controllers/graphs_controller.rb @@ -10,6 +10,7 @@ class GraphsController < ApplicationController before_filter :find_version, :only => [:target_version_graph] before_filter :confirm_issues_exist, :only => [:issue_growth] + before_filter :find_optional_project, :only => [:issue_growth_graph] before_filter :find_open_issues, :only => [:old_issues, :issue_age_graph] helper IssuesHelper