Skip to content

Commit

Permalink
[BUGFIX] Add missing msclkid parameter to cacheHash excludedParameters
Browse files Browse the repository at this point in the history
"msclkid" is the Click ID parameter of Microsoft / Bing
which should be excluded from cHash generation.

Resolves: #97870
Releases: main, 11.5, 10.4
Change-Id: I9c625e559cb2c7cf031466730ea4eab2e376f9ff
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/75047
Tested-by: core-ci <typo3@b13.com>
Tested-by: Simon Schaufelberger <simonschaufi+typo3@gmail.com>
Tested-by: Benni Mack <benni@typo3.org>
Reviewed-by: Simon Schaufelberger <simonschaufi+typo3@gmail.com>
Reviewed-by: Oliver Klee <typo3-coding@oliverklee.de>
Reviewed-by: Benni Mack <benni@typo3.org>
  • Loading branch information
dsteinborn authored and bmack committed Jul 8, 2022
1 parent f0d8e90 commit 2e3de04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typo3/sysext/core/Configuration/DefaultConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -1351,7 +1351,7 @@
'disableNoCacheParameter' => false,
'cacheHash' => [
'cachedParametersWhiteList' => [],
'excludedParameters' => ['L', 'pk_campaign', 'pk_kwd', 'utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'gclid', 'fbclid'],
'excludedParameters' => ['L', 'pk_campaign', 'pk_kwd', 'utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'gclid', 'fbclid', 'msclkid'],
'requireCacheHashPresenceParameters' => [],
'excludeAllEmptyParameters' => false,
'excludedParametersIfEmpty' => [],
Expand Down

0 comments on commit 2e3de04

Please sign in to comment.