mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-04 02:57:38 +00:00
Bug 179264 csv output for the buglist (see url inside) is invalid (too many "s)
r,a=justdave
This commit is contained in:
parent
79e421db7d
commit
110f6e5b40
@ -1586,15 +1586,12 @@ $::template ||= Template->new(
|
||||
# characters that need encoding.
|
||||
url_quote => \&Bugzilla::Util::url_quote,
|
||||
|
||||
# In CSV, quotes are doubled, and any value containing a quote or a
|
||||
# comma is enclosed in quotes.
|
||||
# In CSV, quotes are doubled, and we enclose the whole value in quotes
|
||||
csv => sub
|
||||
{
|
||||
my ($var) = @_;
|
||||
$var =~ s/"/""/;
|
||||
if ($var =~ /",/) {
|
||||
$var = "\"$var\"";
|
||||
}
|
||||
$var =~ s/"/""/g;
|
||||
$var = "\"$var\"";
|
||||
return $var;
|
||||
} ,
|
||||
} ,
|
||||
|
Loading…
Reference in New Issue
Block a user