I've written an extension with Extbase/Fluid and this extension has a plugin:
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'MyVendor.' . $_EXTKEY,
'Pi1',
array(
'MyController' => 'list'
),
// non-cacheable actions
array(
'MyController' => 'list'
)
);
But when creating a link
<f:link.action arguments="{foo: 'bar'}">...</f:link.action>
the resulting url has a cHash parameter:
http://localhost/mypage/?tx_myext_pi1[foo]=bar&cHash=d1768a40d9370f7a8d327043da156a05
Why? I defined this plugin as "do not cache" so there should be no cHash parameter.
TYPO3 version is 7.6.12.