Commit 486279f065a7402802e4672e842e87a2c47d25bb
1 parent
69676ae4
Exists in
theme-brasil-digital-from-staging
and in
9 other branches
proposals_discussion: fix quote char
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
plugins/proposals_discussion/views/proposals_discussion_plugin_profile/export.csv.erb
... | ... | @@ -12,7 +12,7 @@ |
12 | 12 | <% header << _('Likes') if environment.plugin_enabled?('VotePlugin') %> |
13 | 13 | <% header << _('Dislikes') if environment.plugin_enabled?('VotePlugin') %> |
14 | 14 | |
15 | -<%= CSV.generate_line(header, :row_sep => ?\t, :quote_char => ?\ ) %> | |
15 | +<%= CSV.generate_line(header, :row_sep => ?\t) %> | |
16 | 16 | |
17 | 17 | <% @comments.each do |comment| %> |
18 | 18 | <% line = [ |
... | ... | @@ -26,5 +26,5 @@ |
26 | 26 | ] %> |
27 | 27 | <% line << comment.votes_for if environment.plugin_enabled?('VotePlugin') %> |
28 | 28 | <% line << comment.votes_against if environment.plugin_enabled?('VotePlugin') %> |
29 | - <%= CSV.generate_line(line, :row_sep => ?\t, :quote_char => ?\ ) %> | |
29 | + <%= CSV.generate_line(line, :row_sep => ?\t) %> | |
30 | 30 | <% end %> | ... | ... |