aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBibiko <bibiko@eva.mpg.de>2011-05-03 20:05:06 +0000
committerBibiko <bibiko@eva.mpg.de>2011-05-03 20:05:06 +0000
commit27102ed2925b18be9e55ba529937f6f0a4d23eaf (patch)
tree259dd2640bb0d0c8d6cc46f6420e677bdec47eaa
parentc290d41901c3a8d62532316990f8f1411d468f75 (diff)
downloadsequelpro-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
-rw-r--r--Source/SPCSVExporter.m3
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]))
{