* HTML Editor: fix bug in editing uploaded image

This commit is contained in:
Hadi Nategh 2020-10-19 11:14:24 +02:00
parent 910329c2e7
commit 72769e7a43

View File

@ -42,7 +42,7 @@ class ContentSecurityPolicy
'manifest-src'=> ["'self'"],
'frame-ancestors' => ["'self'"], // does not allow to frame (embed in frameset) other then self / clickjacking protection
'media-src' => ["data:"],
'img-src' => ["data:", "https:"],
'img-src' => ["data:", "https:", "blob:"],
'default-src' => ["'none'"], // disallows all not explicit set sources!
);