@@ -, +, @@ associated to LibreOffice Calc - Install LibreOffice and make sure that csv files are associated to Calc (Note: tested with Firefox 46.0.1 on Windows 8) - Go to Home > Tools > Quote editor > Quote uploader - Try to upload a valid CSV (e.g. Example from Bug 15684) (Incorrect filetype: application/vnd.sun.xml.calc) - Apply patch - Try to upload again --- koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes-upload.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes-upload.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes-upload.tt @@ -238,7 +238,7 @@ var fileType = evt.target.files[0].type || 'unknown'; var fileSizeInK = Math.round(evt.target.files[0].size/1024); - if (!fileType.match(/comma-separated-values|csv|excel/i)) { + if (!fileType.match(/comma-separated-values|csv|excel|calc/i)) { alert(_("Uploads limited to csv. Incorrect filetype: %s").format(fileType)); parent.location='quotes-upload.pl'; return; --