##// END OF EJS Templates
Prevent mass-assignment when adding/updating an issue category (#10390)....
Prevent mass-assignment when adding/updating an issue category (#10390). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9131 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7446:ee5f712e8990
r9011:460239d1f9ee
Show More
_issue.text.erb
13 lines | 498 B | text/plain | TextLexer
Jean-Philippe Lang
Notifications about issues (add/edit) are now sent in plain text and html....
r712 <%= "#{issue.tracker.name} ##{issue.id}: #{issue.subject}" %>
Jean-Philippe Lang
Mailer:...
r864 <%= issue_url %>
Jean-Philippe Lang
Notifications about issues (add/edit) are now sent in plain text and html....
r712
Jean-Philippe Lang
Added custom fields in issue related mail notifications....
r811 <%=l(:field_author)%>: <%= issue.author %>
<%=l(:field_status)%>: <%= issue.status %>
<%=l(:field_priority)%>: <%= issue.priority %>
<%=l(:field_assigned_to)%>: <%= issue.assigned_to %>
<%=l(:field_category)%>: <%= issue.category %>
<%=l(:field_fixed_version)%>: <%= issue.fixed_version %>
Jean-Philippe Lang
Use #custom_field_values to display issue custom fields in email, just like on regular views (#7604)....
r4772 <% issue.custom_field_values.each do |c| %><%= c.custom_field.name %>: <%= show_value(c) %>
Jean-Philippe Lang
Added custom fields in issue related mail notifications....
r811 <% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
<%= issue.description %>