Browse Source

MMICore : Fix ODT/PDF document display

Mathieu Moulin 2 years ago
parent
commit
62aef36d2e
1 changed files with 3 additions and 0 deletions
  1. 3 0
      htdocs/document.php

+ 3 - 0
htdocs/document.php

@@ -263,6 +263,9 @@ if (preg_match('/\.\./', $fullpath_original_file) || preg_match('/[<>|]/', $full
 
 clearstatcache();
 
+// MMI Fix ODT to PDF
+$fullpath_original_file = preg_replace('/(\.odt)$/i', '.pdf', $fullpath_original_file);
+
 $filename = basename($fullpath_original_file);
 $filename = preg_replace('/\.noexe$/i', '', $filename);