1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-10 16:54:44 +02:00

Fix issue processwire/processwire-issues#487 where svg files in $config->pageFileSecure mode needed entry in $config->fileContentTypes

This commit is contained in:
Ryan Cramer
2018-02-06 05:39:19 -05:00
parent 5c708797f9
commit eb80f52efe
2 changed files with 2 additions and 1 deletions

View File

@@ -562,6 +562,7 @@ $config->fileContentTypes = array(
'jpg' => 'image/jpeg',
'jpeg' => 'image/jpeg',
'png' => 'image/x-png',
'svg' => 'image/svg+xml'
);