Skip to content

Commit

Permalink
Merge branch 'hotfix/1.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
stoyan committed Jan 8, 2013
2 parents bac8270 + 48f5992 commit 2cf1853
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/views/importer/match.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,10 @@
<tbody>
<% @samples.each do |issue| -%>
<tr class="<%= cycle("odd", "even") %>">
<% issue.each do |column| %><%= content_tag 'td', column[1] %><% end %>
<% issue.each do |column| %>
<% column[1] = column[1].unpack('U*').pack('U*') if column[1].kind_of?(String) %>
<%= content_tag 'td', column[1] %>
<% end %>
</tr>
<% end %>
<tr class="<%= cycle("odd", "even") %>">
Expand Down

0 comments on commit 2cf1853

Please sign in to comment.