##// END OF EJS Templates
Adds support for commit logs reencoding to UTF-8 before insertion in the database (#834, #917, #1663)....
Adds support for commit logs reencoding to UTF-8 before insertion in the database (#834, #917, #1663). Source encoding of commit logs can be selected in Application settings -> Repositories. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1767 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1730:237a3f52a2d9
r1766:0cf15476a35b
Show More
_form_custom_fields.rhtml
12 lines | 340 B | text/html+ruby | RhtmlLexer
/ app / views / issues / _form_custom_fields.rhtml
<div class="splitcontentleft">
<% i = 0 %>
<% split_on = @issue.custom_field_values.size / 2 %>
<% @issue.custom_field_values.each do |value| %>
<p><%= custom_field_tag_with_label :issue, value %></p>
<% if i == split_on -%>
</div><div class="splitcontentright">
<% end -%>
<% i += 1 -%>
<% end -%>
</div>
<div style="clear:both;"> </div>