forked from extern/egroupware
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++;
|
$row++;
|
||||||
if ($row == 1)
|
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
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user