1 Commits
0.3.0 ... 0.3.1

Author SHA1 Message Date
zynode
7762e71316 parseCSV 0.3.1
- Small change to default output settings to
  conform with RFC 4180 (http://rfc.net/rfc4180.html).
  Only the LF (line feed) character was used
  by default to separate rows, rather than
  CRLF (carriage return & line feed).

git-svn-id: http://parsecsv-for-php.googlecode.com/svn/trunk@17 339761fc-0c37-0410-822d-8b8cac1f6a97
2007-08-31 22:45:22 +00:00
2 changed files with 15 additions and 2 deletions

View File

@@ -1,3 +1,16 @@
parseCSV 0.3.1
-----------------------------------
Date: 1-Sep-2007
- Small change to default output settings to
conform with RFC 4180 (http://rfc.net/rfc4180.html).
Only the LF (line feed) character was used
by default to separate rows, rather than
CRLF (carriage return & line feed).
-----------------------------------
parseCSV 0.3.0
-----------------------------------
Date: 9-Aug-2007

View File

@@ -4,7 +4,7 @@ class parseCSV {
/*
Class: parseCSV v0.3.0
Class: parseCSV v0.3.1
http://code.google.com/p/parsecsv-for-php/
@@ -123,7 +123,7 @@ class parseCSV {
var $output_encoding = 'ISO-8859-1';
# used by unparse(), save(), and output() functions
var $linefeed = "\n";
var $linefeed = "\r\n";
# only used by output() function
var $output_delimiter = ',';