Allow inline styles for theming images
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
fa1b23b67a
commit
9691360f6e
1 changed files with 3 additions and 0 deletions
|
@ -379,6 +379,9 @@ class ThemingController extends Controller {
|
|||
}
|
||||
|
||||
$response = new FileDisplayResponse($file);
|
||||
$csp = new Http\ContentSecurityPolicy();
|
||||
$csp->allowInlineStyle();
|
||||
$response->setContentSecurityPolicy($csp);
|
||||
$response->cacheFor(3600);
|
||||
$response->addHeader('Content-Type', $this->config->getAppValue($this->appName, $key . 'Mime', ''));
|
||||
$response->addHeader('Content-Disposition', 'attachment; filename="' . $key . '"');
|
||||
|
|
Loading…
Reference in a new issue