Skip to content

Commit

Permalink
Remove single quotes around CSP wildcard (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwalbeck authored Aug 3, 2022
1 parent 93465e4 commit 2cdb887
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Controller/PageController.php
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ function setEmbCsp($tr, $userId) {
$csp = new ContentSecurityPolicy();
$tr->setContentSecurityPolicy($csp);
}
$csp->addAllowedFrameAncestorDomain("'*'");
$csp->addAllowedFrameAncestorDomain("*");
}

// ---- END EMBEDDABLE -----
Expand Down

0 comments on commit 2cdb887

Please sign in to comment.