projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
61a56da
)
CSV-Import: Groß-/Kleinschreibung bei Spaltennamen ignorieren
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Mon, 7 Mar 2011 15:58:54 +0000
(16:58 +0100)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Thu, 16 Jun 2011 06:44:10 +0000
(08:44 +0200)
SL/Helper/Csv.pm
patch
|
blob
|
history
diff --git
a/SL/Helper/Csv.pm
b/SL/Helper/Csv.pm
index
e2032ea
..
a30122e
100644
(file)
--- a/
SL/Helper/Csv.pm
+++ b/
SL/Helper/Csv.pm
@@
-109,7
+109,7
@@
sub _check_header {
0,
]) unless $header;
- $self->header(
$header
);
+ $self->header(
[ map { lc } @{ $header } ]
);
}
sub _parse_data {