diff options
author | Bibiko <bibiko@eva.mpg.de> | 2011-05-03 20:05:06 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2011-05-03 20:05:06 +0000 |
commit | 27102ed2925b18be9e55ba529937f6f0a4d23eaf (patch) | |
tree | 259dd2640bb0d0c8d6cc46f6420e677bdec47eaa /Source/SPCSVExporter.m | |
parent | c290d41901c3a8d62532316990f8f1411d468f75 (diff) | |
download | sequelpro-27102ed2925b18be9e55ba529937f6f0a4d23eaf.tar.gz sequelpro-27102ed2925b18be9e55ba529937f6f0a4d23eaf.tar.bz2 sequelpro-27102ed2925b18be9e55ba529937f6f0a4d23eaf.zip |
• fixed bug for exporting data as CSV if no header row should be exported
- fixes issue 1041
Diffstat (limited to 'Source/SPCSVExporter.m')
-rw-r--r-- | Source/SPCSVExporter.m | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/SPCSVExporter.m b/Source/SPCSVExporter.m index e5d945c3..36ccbf58 100644 --- a/Source/SPCSVExporter.m +++ b/Source/SPCSVExporter.m @@ -95,8 +95,7 @@ } // Check that we have all the required info before starting the export - if ((![self csvOutputFieldNames]) || - (![self csvFieldSeparatorString]) || + if ((![self csvFieldSeparatorString]) || (![self csvEscapeString]) || (![self csvLineEndingString])) { |