Skip to content

Commit

Permalink
[BUGFIX] Increase size of scope field in sys_csp_resolution
Browse files Browse the repository at this point in the history
In frontend context the field scope in table sys_csp_resolution is
filled with a concatenation of "frontend." and the site configuration
identifier. When the site identifier is too long, new entries in
sys_csp_resolution fail for frontend requests.

Resolves: #102404
Releases: main, 12.4
Change-Id: Ibe274ffb91f35949ff312026b2a904e7cb36a3b3
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/81775
Tested-by: Benni Mack <benni@typo3.org>
Reviewed-by: Benni Mack <benni@typo3.org>
Tested-by: core-ci <typo3@b13.com>
  • Loading branch information
peterkraume authored and bmack committed Nov 19, 2023
1 parent 5a568d5 commit b95bb35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typo3/sysext/core/ext_tables.sql
Expand Up @@ -442,7 +442,7 @@ CREATE TABLE sys_http_report (
CREATE TABLE sys_csp_resolution (
summary varchar(40) NOT NULL,
created int(11) unsigned NOT NULL,
scope varchar(32) NOT NULL,
scope varchar(264) NOT NULL,
mutation_identifier text,
mutation_collection mediumtext,
meta mediumtext,
Expand Down

0 comments on commit b95bb35

Please sign in to comment.