Revision f01bf635
Von Sven Schöling vor etwa 12 Jahren hinzugefügt
SL/Controller/CsvImport/Base.pm | ||
---|---|---|
29 | 29 |
profile => $profile, |
30 | 30 |
ignore_unknown_columns => 1, |
31 | 31 |
strict_profile => 1, |
32 |
case_insensitive_header => 1, |
|
32 | 33 |
map { ( $_ => $self->controller->profile->get($_) ) } qw(sep_char escape_char quote_char), |
33 | 34 |
)); |
34 | 35 |
|
... | ... | |
212 | 213 |
$profile{$col} = $name; |
213 | 214 |
} |
214 | 215 |
|
216 |
if ($self->can('all_cvar_configs')) { |
|
217 |
for (@{ $self->all_cvar_configs }) { |
|
218 |
$profile{ 'cvar_' . $_->name } = ''; |
|
219 |
} |
|
220 |
} |
|
221 |
|
|
215 | 222 |
$self->profile(\%profile); |
216 | 223 |
} |
217 | 224 |
|
Auch abrufbar als: Unified diff
CsvImport: CVars case insensitive parsen lassen