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(); }