diff options
-rw-r--r-- | apps/theming/lib/Controller/ThemingController.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/theming/lib/Controller/ThemingController.php b/apps/theming/lib/Controller/ThemingController.php index b7e878f2e7e..d043c64f853 100644 --- a/apps/theming/lib/Controller/ThemingController.php +++ b/apps/theming/lib/Controller/ThemingController.php @@ -280,8 +280,7 @@ class ThemingController extends Controller { ); } - $resizeKeys = ['background']; - if (in_array($key, $resizeKeys, true)) { + if ($key === 'background' && strpos($detectedMimeType, 'image/svg') === false) { // Optimize the image since some people may upload images that will be // either to big or are not progressive rendering. $newImage = @imagecreatefromstring(file_get_contents($image['tmp_name'], 'r')); |