From 09918861fc6059c581b04d740fb498196ccc8502 Mon Sep 17 00:00:00 2001 From: james Date: Tue, 29 Mar 2005 21:33:59 +0000 Subject: [PATCH] enclose CSV headings in quotation marks to avoid the first 2 chars of the file being "ID", which microsoft chokes on see: http://support.microsoft.com/kb/q215591/ --- TODO | 4 ++++ lcsv.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/TODO b/TODO index c3cf4cb8..d0ab2e05 100644 --- a/TODO +++ b/TODO @@ -1,2 +1,6 @@ - Make auto-logout on email address change work properly on the FIRST submit, not on first action after the submit - same for judges changing email address + +- Judges CSV contain categories and sub-categories info +- Judge 'info' button on judge teams page to view allt he judge info +- diff --git a/lcsv.php b/lcsv.php index 2cf951c9..23fd3dcb 100644 --- a/lcsv.php +++ b/lcsv.php @@ -55,7 +55,7 @@ class lcsv for($c=0;$c<$table_cols;$c++) { $head=$table['header'][$c]; - $this->csvdata.=$head; + $this->csvdata.="\"".$head."\""; if($c<$table_cols-1) $this->csvdata.=$this->separator(); }