From ca1e037eb78ec5cfc85f4cc9ee09faab86e1cb31 Mon Sep 17 00:00:00 2001 From: Victor Costa Date: Fri, 24 Oct 2014 16:15:42 -0300 Subject: [PATCH] proposals_discussion: fix quote char --- views/proposals_discussion_plugin_profile/export.csv.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/views/proposals_discussion_plugin_profile/export.csv.erb b/views/proposals_discussion_plugin_profile/export.csv.erb index f297da1..d1b9b19 100644 --- a/views/proposals_discussion_plugin_profile/export.csv.erb +++ b/views/proposals_discussion_plugin_profile/export.csv.erb @@ -12,7 +12,7 @@ <% header << _('Likes') if environment.plugin_enabled?('VotePlugin') %> <% header << _('Dislikes') if environment.plugin_enabled?('VotePlugin') %> -<%= CSV.generate_line(header, :row_sep => ?\t, :quote_char => ?\ ) %> +<%= CSV.generate_line(header, :row_sep => ?\t) %> <% @comments.each do |comment| %> <% line = [ @@ -26,5 +26,5 @@ ] %> <% line << comment.votes_for if environment.plugin_enabled?('VotePlugin') %> <% line << comment.votes_against if environment.plugin_enabled?('VotePlugin') %> - <%= CSV.generate_line(line, :row_sep => ?\t, :quote_char => ?\ ) %> + <%= CSV.generate_line(line, :row_sep => ?\t) %> <% end %> -- libgit2 0.21.2