New: Added TSV in export formats

This commit is contained in:
Laurent Destailleur
2008-08-25 07:16:16 +00:00
parent 368ed5d813
commit f50b5fb4b1
5 changed files with 233 additions and 7 deletions

View File

@@ -76,6 +76,7 @@ $attachment = true;
if (eregi('\.sql$',$original_file)) { $attachment = true; }
if (eregi('\.html$',$original_file)) { $attachment = false; }
if (eregi('\.csv$',$original_file)) { $attachment = true; }
if (eregi('\.tsv$',$original_file)) { $attachment = true; }
if (eregi('\.pdf$',$original_file)) { $attachment = true; }
if (eregi('\.xls$',$original_file)) { $attachment = true; }
if (eregi('\.jpg$',$original_file)) { $attachment = true; }