diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-12-05 14:51:03 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-12-05 14:51:03 +0100 |
commit | 5f66cb32502c88d7182c3dc5994ef733762fa665 (patch) | |
tree | 5ca8a994001831453d2f133c9dc5a0fb595f5cb8 /lib/private | |
parent | 4ec1da3014b1aecd2fa06575a69cd3c053eaba1a (diff) | |
parent | ab3381d3860f27b5ce686437c9b3180bdc4b09e4 (diff) | |
download | nextcloud-server-5f66cb32502c88d7182c3dc5994ef733762fa665.tar.gz nextcloud-server-5f66cb32502c88d7182c3dc5994ef733762fa665.zip |
Merge pull request #12561 from oparoz/vectoricon
Improve the bitmap and vector mime icons
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/helper.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/private/helper.php b/lib/private/helper.php index 0e302275540..fb4ddfae3b7 100644 --- a/lib/private/helper.php +++ b/lib/private/helper.php @@ -158,7 +158,10 @@ class OC_Helper { $alias = array( 'application/octet-stream' => 'file', // use file icon as fallback - 'application/illustrator' => 'image', + 'application/illustrator' => 'image/vector', + 'application/postscript' => 'image/vector', + 'image/svg+xml' => 'image/vector', + 'application/coreldraw' => 'image', 'application/x-gimp' => 'image', 'application/x-photoshop' => 'image', |