mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:29 +01:00
* Import/Export: Fix export CSV with Tab delimiter literally inserted '\t' instead of tab.
Reported by xenolevis
This commit is contained in:
parent
798823ab6e
commit
d31d19c1ec
@ -304,6 +304,12 @@ class importexport_export_ui {
|
||||
unset($_content['filter']);
|
||||
$definition->filter = $filter;
|
||||
|
||||
// Check/fix non-printing delimiters
|
||||
if($_content['delimiter'] === '\t')
|
||||
{
|
||||
$_content['delimiter'] = "\t";
|
||||
}
|
||||
|
||||
$definition->plugin_options = array_merge(
|
||||
$definition->plugin_options,
|
||||
$_content
|
||||
|
Loading…
Reference in New Issue
Block a user