Merge pull request #18581 from nextcloud/backport/18140/stable16

[stable16] Allow inline styles for theming images
This commit is contained in:
Roeland Jago Douma 2020-01-08 10:31:51 +01:00 committed by GitHub
commit 62b4de04b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -383,6 +383,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 . '"');