Commit d02201dde2a4d01c8e41dc383d37c1ed9a608d19

Authored by Paul Barrett
1 parent 2f7495d0

Allow New Office formats to be detected by pdf converter

plugins/pdfConverter/pdfConverter.php
... ... @@ -125,7 +125,7 @@ class pdfConverter extends BaseProcessor
125 125 $mime_types[] = 'application/vnd.oasis.opendocument.spreadsheet';
126 126 $mime_types[] = 'application/vnd.oasis.opendocument.spreadsheet-template';
127 127  
128   - /* OO3
  128 + /* OO3 */
129 129 // Office 2007
130 130 $mime_types[] = 'application/vnd.openxmlformats-officedocument.wordprocessingml.document';
131 131 $mime_types[] = 'application/vnd.openxmlformats-officedocument.wordprocessingml.template';
... ... @@ -134,7 +134,7 @@ class pdfConverter extends BaseProcessor
134 134 $mime_types[] = 'application/vnd.openxmlformats-officedocument.presentationml.presentation';
135 135 $mime_types[] = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet';
136 136 $mime_types[] = 'application/vnd.openxmlformats-officedocument.spreadsheetml.template';
137   - */
  137 + /* */
138 138  
139 139 return $mime_types;
140 140 }
... ...