Project

General

Profile

Actions

Bug #78777

closed

TYPO3 plugin without caching

Added by Sven Burkert over 7 years ago. Updated over 6 years ago.

Status:
Closed
Priority:
Must have
Assignee:
-
Category:
Extbase
Target version:
-
Start date:
2016-11-23
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:

Description

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.
When the cHash parameter is set, the page contents are cached, even if the plugin is defined as USER_INT, right?

TYPO3 version is 7.6.12.

Actions

Also available in: Atom PDF