aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Kostikov <max@kostikov.co>2021-03-04 08:36:20 +0000
committerMax Kostikov <max@kostikov.co>2021-03-04 08:36:20 +0000
commit7beb500fb4c7ebd004a6c24f54be2989964e8e0e (patch)
tree6891e97605bb04b64465afd8c77d949e7023d56b
parentcb0199603908e617e10a4d8ba8ec569a59178e6b (diff)
downloadvolse-hubzilla-7beb500fb4c7ebd004a6c24f54be2989964e8e0e.tar.gz
volse-hubzilla-7beb500fb4c7ebd004a6c24f54be2989964e8e0e.tar.bz2
volse-hubzilla-7beb500fb4c7ebd004a6c24f54be2989964e8e0e.zip
Check if custom CSP is set
-rw-r--r--boot.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index 2df98a19d..70610e1c7 100644
--- a/boot.php
+++ b/boot.php
@@ -2422,7 +2422,7 @@ function construct_page() {
if(App::get_scheme() === 'https' && App::$config['system']['transport_security_header'])
header("Strict-Transport-Security: max-age=31536000");
- if(App::$config['system']['content_security_policy']) {
+ if(isset(App::$config['system']['content_security_policy'])) {
$cspsettings = [
'script-src' => [ "'self'", "'unsafe-inline'", "'unsafe-eval'" ],
'style-src' => [ "'self'", "'unsafe-inline'" ],