fix typo causing not loaded images in html files from filemanager

This commit is contained in:
ralf 2024-07-12 12:29:25 +02:00
parent 343a841cae
commit 1a98d800f7

View File

@ -84,7 +84,7 @@ class Content
UserAgent::type() == 'safari' && UserAgent::mobile() && UserAgent::version() >= 9537) // iOS 7
{
// forbid to execute any javascript (to be precise anything but images and styles)
ContentSecurityPolicy::header("image-src 'self' data: https:; style-src 'self' 'unsafe-inline' https:; default-src 'none'");
ContentSecurityPolicy::header("img-src 'self' data: https:; style-src 'self' 'unsafe-inline' https:; default-src 'none'");
}
else // everything else get's a Content-dispostion: attachment, to be on save side
{
@ -165,4 +165,4 @@ class Content
header('Content-disposition:'.$attachment.' filename="'.Api\Translation::to_ascii($fn).'"; filename*=utf-8\'\''.rawurlencode($fn));
}
}
}