diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-04-21 08:21:23 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-04-21 08:21:23 +0000 |
commit | 907f906ec6e0fb60cbbd4abe7b579c59d78405d4 (patch) | |
tree | eff90ec894aa95825e428c1d97595646c1df4bd6 /app/controllers/projects_controller.rb | |
parent | acfb87a07ba71b907e3497e5a942420023df171c (diff) | |
download | redmine-907f906ec6e0fb60cbbd4abe7b579c59d78405d4.tar.gz redmine-907f906ec6e0fb60cbbd4abe7b579c59d78405d4.zip |
Fixed: error when exporting to PDF an issue list using a custom field filter.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@452 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers/projects_controller.rb')
-rw-r--r-- | app/controllers/projects_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/projects_controller.rb b/app/controllers/projects_controller.rb index a3e805a9c..9c6697d96 100644 --- a/app/controllers/projects_controller.rb +++ b/app/controllers/projects_controller.rb @@ -337,7 +337,7 @@ class ProjectsController < ApplicationController render :action => 'list_issues' and return unless @query.valid? @issues = Issue.find :all, :order => sort_clause, - :include => [ :author, :status, :tracker, :priority ], + :include => [ :author, :status, :tracker, :priority, :custom_values ], :conditions => @query.statement, :limit => Setting.issues_export_limit |