diff options
author | Mario <mario@mariovavti.com> | 2021-03-08 09:21:22 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-03-08 09:21:22 +0000 |
commit | 1828ef6b68b3d2334200a154199e9ec72f85347a (patch) | |
tree | 7e4d5d47d42d3fe96830f78ed23a0e47d3ddfeb7 | |
parent | c67fdd94801e8d24fc2cb4522f06a0d3b7e24785 (diff) | |
parent | 5b7a10401f063241b6f8939fb1378478af515a9d (diff) | |
download | volse-hubzilla-1828ef6b68b3d2334200a154199e9ec72f85347a.tar.gz volse-hubzilla-1828ef6b68b3d2334200a154199e9ec72f85347a.tar.bz2 volse-hubzilla-1828ef6b68b3d2334200a154199e9ec72f85347a.zip |
changelog
-rw-r--r-- | CHANGELOG | 3 | ||||
-rw-r--r-- | boot.php | 3 |
2 files changed, 4 insertions, 2 deletions
@@ -43,6 +43,7 @@ Hubzilla 5.4 (2021-03-xx) - Fix r_preview for list mode in mod channel and mod network Addons + - Pubcrawl: deal with mastodons remote replies - Diaspora: reduce xchan network confusion in several places - Diaspora: fix mentions if multiple xchan networks exists - Diaspora: fix comments on comments @@ -69,7 +70,7 @@ Hubzilla 5.4 (2021-03-xx) Hubzilla 5.2.2 (2021-02-13) - - Fix issue with ping_site() + - Fix issue with ping_site() Hubzilla 5.2.1 (2021-01-16) @@ -52,7 +52,7 @@ require_once('include/attach.php'); require_once('include/bbcode.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '5.5.1' ); +define ( 'STD_VERSION', '5.4RC2' ); define ( 'ZOT_REVISION', '6.0' ); define ( 'DB_UPDATE_VERSION', 1243 ); @@ -2428,6 +2428,7 @@ function construct_page() { 'style-src' => [ "'self'", "'unsafe-inline'" ], 'frame-src' => [ "'self'" ] ]; + call_hooks('content_security_policy',$cspsettings); // Legitimate CSP directives (cxref: https://content-security-policy.com/) |