mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-06-09 00:22:45 -04:00
parent
f382457a70
commit
bdb9fd299b
1 changed files with 1 additions and 1 deletions
|
|
@ -37,7 +37,7 @@ class Csv
|
|||
}
|
||||
$out = array();
|
||||
foreach ($row as & $val) {
|
||||
$out[] = '"' . $val . '"';
|
||||
$out[] = '"' . str_replace('"', '""', $val) . '"';
|
||||
}
|
||||
$csv .= implode(',', $out) . "\r\n";
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue