Make screenshot feature compatible with Firefox 40

This commit is contained in:
Frederic Guillot
2015-08-23 10:47:12 -04:00
parent b944b44dca
commit dd239ddb59
5 changed files with 5 additions and 4 deletions

View File

@@ -80,7 +80,7 @@ abstract class Base extends \Core\Base
private function sendHeaders($action)
{
// HTTP secure headers
$this->response->csp(array('style-src' => "'self' 'unsafe-inline'", 'img-src' => '*'));
$this->response->csp(array('style-src' => "'self' 'unsafe-inline'", 'img-src' => '* data:'));
$this->response->nosniff();
$this->response->xss();