##// END OF EJS Templates
set default category_id instead of the object (#11665)...
set default category_id instead of the object (#11665) Rails 2.3 still has issues with synchronizing the association_id and association attributes of an object. That means, if you set the association with an object first and then just set the id afterwards, the object wins and the setting of the id gets lost. This is not an issue in Rails >= 3.1 anymore. Contributed by Holger Just. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.4-stable@10226 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7446:ee5f712e8990
r10043:14dcefaa97f9
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 %>