summaryrefslogtreecommitdiffstats
path: root/app/views/mailer/issue_add.html.erb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-05-05 13:21:58 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-05-05 13:21:58 +0000
commit19e56045dd7c3321026d6e1fe2f0dd23ceecf5ff (patch)
tree92c163b337eb905840bcd11c903edaa853d1b7f5 /app/views/mailer/issue_add.html.erb
parent6fc909a40267413f79f976dda8a2b05cde656159 (diff)
downloadredmine-19e56045dd7c3321026d6e1fe2f0dd23ceecf5ff.tar.gz
redmine-19e56045dd7c3321026d6e1fe2f0dd23ceecf5ff.zip
Fixed deprecated render calls in Mailer.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9640 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/mailer/issue_add.html.erb')
-rw-r--r--app/views/mailer/issue_add.html.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/mailer/issue_add.html.erb b/app/views/mailer/issue_add.html.erb
index 2bceb7253..fb4a2dab6 100644
--- a/app/views/mailer/issue_add.html.erb
+++ b/app/views/mailer/issue_add.html.erb
@@ -1,3 +1,3 @@
<%= l(:text_issue_added, :id => "##{@issue.id}", :author => h(@issue.author)) %>
<hr />
-<%= render :partial => "issue.html.erb", :locals => { :issue => @issue, :issue_url => @issue_url } %>
+<%= render :partial => 'issue', :formats => [:html], :locals => { :issue => @issue, :issue_url => @issue_url } %>