diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-11-04 20:17:44 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-11-04 20:17:44 +0000 |
commit | 984e5a36bbbcb963619d56a4221218650758c38a (patch) | |
tree | 6a316858b44569099335baf8961c6cb0650d8bf6 /app | |
parent | db63f5a925f4e042d4df2567b2c4f081fa9a1816 (diff) | |
download | redmine-984e5a36bbbcb963619d56a4221218650758c38a.tar.gz redmine-984e5a36bbbcb963619d56a4221218650758c38a.zip |
Fixed that parent column should not include issue subject (#13673).
git-svn-id: http://svn.redmine.org/redmine/trunk@13556 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/helpers/queries_helper.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/helpers/queries_helper.rb b/app/helpers/queries_helper.rb index 75867ac12..9f6c07b36 100644 --- a/app/helpers/queries_helper.rb +++ b/app/helpers/queries_helper.rb @@ -97,6 +97,8 @@ module QueriesHelper link_to value, issue_path(issue) when :subject link_to value, issue_path(issue) + when :parent + value ? (value.visible? ? link_to_issue(value, :subject => false) : "##{value.id}") : '' when :description issue.description? ? content_tag('div', textilizable(issue, :description), :class => "wiki") : '' when :done_ratio |