Skip to content
Snippets Groups Projects
Commit 33ab2354 authored by Marc Willmann's avatar Marc Willmann Committed by Stefan Bürk
Browse files

[BUGFIX] Increase size of scope field in sys_http_report

In frontend context the field scope in table sys_http_report may
filled with a concatenation of "frontend." and the site configuration
identifier. When the site identifier is too long, new entries in
sys_http_report fail for frontend requests.

Resolves: #104431
Related: #102404
Releases: main, 12.4
Change-Id: I88031aa518b98a167ed54b9bfd47c702da153e7b
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/85295


Tested-by: default avatarOliver Hader <oliver.hader@typo3.org>
Tested-by: default avatarGarvin Hicking <gh@faktor-e.de>
Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarStefan Bürk <stefan@buerk.tech>
Reviewed-by: default avatarGarvin Hicking <gh@faktor-e.de>
Reviewed-by: default avatarOliver Hader <oliver.hader@typo3.org>
Reviewed-by: default avatarStefan Bürk <stefan@buerk.tech>
parent 35c9b963
Branches
Tags
No related merge requests found
......@@ -304,7 +304,7 @@ CREATE TABLE sys_http_report (
created int(11) unsigned NOT NULL,
changed int(11) unsigned NOT NULL,
type varchar(32) NOT NULL,
scope varchar(32) NOT NULL,
scope varchar(100) NOT NULL,
request_time bigint(20) unsigned NOT NULL,
meta mediumtext,
details mediumtext,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment