mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 17:23:59 -04:00
Merge pull request #17791 from owncloud/make-eventsource-compatible-with-win10
Add custom CSP for Win 10 compatibility
This commit is contained in:
commit
89cd929560
1 changed files with 11 additions and 0 deletions
|
|
@ -59,6 +59,17 @@ class OC_EventSource implements \OCP\IEventSource {
|
|||
$this->fallback = isset($_GET['fallback']) and $_GET['fallback'] == 'true';
|
||||
if ($this->fallback) {
|
||||
$this->fallBackId = (int)$_GET['fallback_id'];
|
||||
/**
|
||||
* FIXME: The default content-security-policy of ownCloud forbids inline
|
||||
* JavaScript for security reasons. IE starting on Windows 10 will
|
||||
* however also obey the CSP which will break the event source fallback.
|
||||
*
|
||||
* As a workaround thus we set a custom policy which allows the execution
|
||||
* of inline JavaScript.
|
||||
*
|
||||
* @link https://github.com/owncloud/core/issues/14286
|
||||
*/
|
||||
header("Content-Security-Policy: default-src 'none'; script-src 'unsafe-inline'");
|
||||
header("Content-Type: text/html");
|
||||
echo str_repeat('<span></span>' . PHP_EOL, 10); //dummy data to keep IE happy
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue