summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2009-07-05 14:14:44 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2009-07-05 14:14:44 +0000
commit6151e95e37207c0c8b270edb4d631bfbd7d9a03a (patch)
treed2ff1cfae1713158d5344ae5dd4635901bbb50c6
parente54d183d207270a11d7acf7eedc67eed5e719c3d (diff)
downloadredmine-6151e95e37207c0c8b270edb4d631bfbd7d9a03a.tar.gz
redmine-6151e95e37207c0c8b270edb4d631bfbd7d9a03a.zip
Adds links to issues in reminder HTML template (#3541).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2814 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--app/views/mailer/reminder.text.html.rhtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/mailer/reminder.text.html.rhtml b/app/views/mailer/reminder.text.html.rhtml
index bd53df802..62201e50a 100644
--- a/app/views/mailer/reminder.text.html.rhtml
+++ b/app/views/mailer/reminder.text.html.rhtml
@@ -2,7 +2,7 @@
<ul>
<% @issues.each do |issue| -%>
- <li><%=h "#{issue.project} - #{issue.tracker} ##{issue.id}: #{issue.subject}" %></li>
+ <li><%=h issue.project %> - <%=link_to("#{issue.tracker} ##{issue.id}", :controller => 'issues', :action => 'show', :id => issue, :only_path => false)%>: <%=h issue.subject %></li>
<% end -%>
</ul>