We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57ec359 commit 16621e9Copy full SHA for 16621e9
jquery/functions.php
@@ -294,9 +294,11 @@ function twentyeleven_content_security_policy() {
294
// Allow inline styles for typekit
295
'style-src' => "'self' 'unsafe-inline' code.jquery.com",
296
// Leaving out typekit img-src, which only loads the p.gif for analytics
297
- 'img-src' => "'self' code.jquery.com",
+ // Allow data: images and gravatars for the wordpress admin
298
+ 'img-src' => "'self' data: secure.gravatar.com code.jquery.com",
299
// Allow fonts from typekit
- 'font-src' => "'self' use.typekit.net",
300
+ // Allow data: fonts for the wordpress admin
301
+ 'font-src' => "'self' data: use.typekit.net",
302
'object-src' => "'none'",
303
'frame-ancestors' => "'none'",
304
'block-all-mixed-content' => '',
0 commit comments