diff --git a/app/views/mailer/_issue_text_html.rhtml b/app/views/mailer/_issue.html.erb similarity index 100% rename from app/views/mailer/_issue_text_html.rhtml rename to app/views/mailer/_issue.html.erb diff --git a/app/views/mailer/issue_add.html.erb b/app/views/mailer/issue_add.html.erb index bc62306c1..2bceb7253 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)) %>
-<%= render :partial => "issue_text_html", :locals => { :issue => @issue, :issue_url => @issue_url } %> +<%= render :partial => "issue.html.erb", :locals => { :issue => @issue, :issue_url => @issue_url } %> diff --git a/app/views/mailer/issue_edit.html.erb b/app/views/mailer/issue_edit.html.erb index 05c67208e..53bd089e6 100644 --- a/app/views/mailer/issue_edit.html.erb +++ b/app/views/mailer/issue_edit.html.erb @@ -8,4 +8,4 @@ <%= textilizable(@journal, :notes, :only_path => false) %>
-<%= render :partial => "issue_text_html", :locals => { :issue => @issue, :issue_url => @issue_url } %> +<%= render :partial => "issue.html.erb", :locals => { :issue => @issue, :issue_url => @issue_url } %>