From 27102ed2925b18be9e55ba529937f6f0a4d23eaf Mon Sep 17 00:00:00 2001 From: Bibiko Date: Tue, 3 May 2011 20:05:06 +0000 Subject: =?UTF-8?q?=E2=80=A2=20fixed=20bug=20for=20exporting=20data=20as?= =?UTF-8?q?=20CSV=20if=20no=20header=20row=20should=20be=20exported=20-=20?= =?UTF-8?q?fixes=20issue=201041?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Source/SPCSVExporter.m | 3 +-- 1 file changed, 1 insertion(+), 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])) { -- cgit v1.2.3