@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

(Celerity) Fix mimetype for JPEG files so IE will load them

Summary: IE won't load background images in a page that are served with the mimetype "image/jpg" as it only recognises the "image/jpeg" mimetype.

Test Plan: Spent an hour or two going back and forth between Linux (to dev) and Windows (to test) to find the source of this issue, then flipped several tables at IE for being terrible.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: epriestley, Korvin

Differential Revision: https://secure.phabricator.com/D8689

authored by

James Rhodes and committed by
epriestley
3e6bfda0 2bd8603d

+1 -1
+1 -1
src/infrastructure/celerity/CelerityResourceController.php
··· 90 90 'js' => 'text/javascript; charset=utf-8', 91 91 'png' => 'image/png', 92 92 'gif' => 'image/gif', 93 - 'jpg' => 'image/jpg', 93 + 'jpg' => 'image/jpeg', 94 94 'swf' => 'application/x-shockwave-flash', 95 95 'woff' => 'font/woff', 96 96 );