From dff60e5a0bbd6c19303767ad80c87ef3e6a4ae9d Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Wed, 4 May 2022 13:02:34 -0400 Subject: [PATCH] Need a ; before report-uri --- web/includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/includes/functions.php b/web/includes/functions.php index 0021050e0..e1a3009ac 100644 --- a/web/includes/functions.php +++ b/web/includes/functions.php @@ -56,7 +56,7 @@ function CSPHeaders($view, $nonce) { default: // Enforce script-src on pages where inline scripts and event handlers have been fixed. header("Content-Security-Policy: script-src 'self' 'nonce-$nonce' $additionalScriptSrc". - (ZM_CSP_REPORT_URI ? ' report-uri '.ZM_CSP_REPORT_URI : '' ) + (ZM_CSP_REPORT_URI ? '; report-uri '.ZM_CSP_REPORT_URI : '' ) ); break; }