From d6c92cf11ddf44b028ce0b6f59fa3bbad342eafa Mon Sep 17 00:00:00 2001 From: Nate Wright Date: Wed, 11 Dec 2024 19:54:39 +0000 Subject: [PATCH] pkp/pkp-lib#10664 Fix xhtml file mimetype for html galley views (#10681) --- classes/core/PKPString.php | 1 + 1 file changed, 1 insertion(+) diff --git a/classes/core/PKPString.php b/classes/core/PKPString.php index 68ad9fc6ca3..da0060a8823 100644 --- a/classes/core/PKPString.php +++ b/classes/core/PKPString.php @@ -377,6 +377,7 @@ public static function getAmbiguousExtensionsMap() { return [ 'html:text/xml' => 'text/html', + 'xhtml:text/xml' => 'text/html', 'css:text/x-c' => 'text/css', 'css:text/plain' => 'text/css', 'csv:text/plain' => 'text/csv',