diff --git a/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php b/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php index 76e3d1302ffb4aa55168e19ae25339ec96b95742..07138de2cc4409dc3547fddec7ef9bb6be1767e3 100644 --- a/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php +++ b/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php @@ -2125,7 +2125,7 @@ class TypoScriptFrontendController implements LoggerAwareInterface // No cache // Set $this->no_cache TRUE if the config.no_cache value is set! if ($this->config['config']['no_cache']) { - $this->set_no_cache('config.no_cache is set'); + $this->set_no_cache('config.no_cache is set', true); } // Auto-configure settings when a site is configured @@ -3499,7 +3499,7 @@ class TypoScriptFrontendController implements LoggerAwareInterface $trigger = $file . ' on line ' . $line; $warning = '$GLOBALS[\'TSFE\']->set_no_cache() was triggered by ' . $trigger . '.'; } - if ($GLOBALS['TYPO3_CONF_VARS']['FE']['disableNoCacheParameter']) { + if (!$internal && $GLOBALS['TYPO3_CONF_VARS']['FE']['disableNoCacheParameter']) { $warning .= ' However, $TYPO3_CONF_VARS[\'FE\'][\'disableNoCacheParameter\'] is set, so it will be ignored!'; $this->getTimeTracker()->setTSlogMessage($warning, 2); } else {