diff options
-rw-r--r-- | it_pipe.class | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it_pipe.class b/it_pipe.class index a5a3f7b..ffd69d1 100644 --- a/it_pipe.class +++ b/it_pipe.class @@ -166,7 +166,7 @@ function csv() foreach (preg_grep('/^$/', $schema) as $idx => $dummy) $schema[$idx] = "field$idx"; - $oldlocale = setlocale(LC_CTYPE, 'de_CH.iso-8859-1'); + $oldlocale = setlocale(LC_CTYPE, 'de_CH.iso-8859-1'); # this works for utf-8 as well foreach ($this->lines as $line) $records[] = (object)array_combine($schema, str_getcsv($line, $splitchar, '"')); # could do a function_exists('str_getcsv') here... |