Index: t3lib/class.t3lib_tcemain.php =================================================================== --- t3lib/class.t3lib_tcemain.php (Revision 10011) +++ t3lib/class.t3lib_tcemain.php (Arbeitskopie) @@ -6771,8 +6771,6 @@ public function clear_cacheCmd($cacheCmd) { global $TYPO3_CONF_VARS; - $this->BE_USER->writelog(3, 1, 0, 0, 'User %s has cleared the cache (cacheCmd=%s)', array($this->BE_USER->user['username'], $cacheCmd)); - // Clear cache for either ALL pages or ALL tables! switch ($cacheCmd) { case 'pages': @@ -6982,6 +6980,8 @@ * @return void */ function internal_clearPageCache() { + $this->BE_USER->writelog(3, 1, 0, 0, 'User %s has cleared the page cache', array($this->BE_USER->user['username'])); + if (TYPO3_UseCachingFramework) { if (t3lib_extMgm::isLoaded('cms')) { $GLOBALS['typo3CacheManager']->getCache('cache_pages')->flush();