##// END OF EJS Templates
Fixed deprecated render calls in Mailer....
Jean-Philippe Lang -
r9457:19e56045dd7c
parent child
Show More
@@ -1,3 +1,3
1 <%= l(:text_issue_added, :id => "##{@issue.id}", :author => h(@issue.author)) %>
1 <%= l(:text_issue_added, :id => "##{@issue.id}", :author => h(@issue.author)) %>
2 <hr />
2 <hr />
3 <%= render :partial => "issue.html.erb", :locals => { :issue => @issue, :issue_url => @issue_url } %>
3 <%= render :partial => 'issue', :formats => [:html], :locals => { :issue => @issue, :issue_url => @issue_url } %>
@@ -1,4 +1,4
1 <%= l(:text_issue_added, :id => "##{@issue.id}", :author => @issue.author) %>
1 <%= l(:text_issue_added, :id => "##{@issue.id}", :author => @issue.author) %>
2
2
3 ----------------------------------------
3 ----------------------------------------
4 <%= render :partial => "issue.text.erb", :locals => { :issue => @issue, :issue_url => @issue_url } %>
4 <%= render :partial => 'issue', :formats => [:text], :locals => { :issue => @issue, :issue_url => @issue_url } %>
@@ -8,4 +8,4
8
8
9 <%= textilizable(@journal, :notes, :only_path => false) %>
9 <%= textilizable(@journal, :notes, :only_path => false) %>
10 <hr />
10 <hr />
11 <%= render :partial => "issue.html.erb", :locals => { :issue => @issue, :issue_url => @issue_url } %>
11 <%= render :partial => 'issue', :formats => [:html], :locals => { :issue => @issue, :issue_url => @issue_url } %>
@@ -9,4 +9,4
9
9
10 <% end -%>
10 <% end -%>
11 ----------------------------------------
11 ----------------------------------------
12 <%= render :partial => "issue.text.erb", :locals => { :issue => @issue, :issue_url => @issue_url } %>
12 <%= render :partial => 'issue', :formats => [:text], :locals => { :issue => @issue, :issue_url => @issue_url } %>
General Comments 0
You need to be logged in to leave comments. Login now