mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
Ignore first line in CSV import to fix other languages, instead use our array
This commit is contained in:
parent
39100cf802
commit
3e4e2d5a63
@ -85,7 +85,11 @@
|
||||
$row++;
|
||||
if ($row == 1)
|
||||
{
|
||||
$header = $data;
|
||||
// Changed here to ignore the header, set to our array
|
||||
while(list($lhs,$rhs) = each($this->import))
|
||||
{
|
||||
$header[] = $lhs;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user