Index: Classes/Service/GridData.php =================================================================== --- Classes/Service/GridData.php (revision 3861) +++ Classes/Service/GridData.php (working copy) @@ -175,7 +175,7 @@ * @return void */ protected function initializeWorkspacesCachingFramework() { - if (TYPO3_UseCachingFramework) { + if (TYPO3_UseCachingFramework === TRUE) { try { $GLOBALS['typo3CacheFactory']->create( 'workspaces_cache', @@ -198,7 +198,7 @@ * @param string $filterTxt The given filter text from the grid. */ protected function setDataArrayIntoCache (array $versions, $filterTxt) { - if (TYPO3_UseCachingFramework) { + if (TYPO3_UseCachingFramework === TRUE) { $hash = $this->calculateHash($versions, $filterTxt); $content = serialize($this->dataArray); @@ -216,7 +216,7 @@ protected function getDataArrayFromCache (array $versions, $filterTxt) { $cacheEntry = FALSE; - if (TYPO3_UseCachingFramework) { + if (TYPO3_UseCachingFramework === TRUE) { $hash = $this->calculateHash($versions, $filterTxt); $content = $this->workspacesCache->get($hash); Index: Classes/Service/Tcemain.php =================================================================== --- Classes/Service/Tcemain.php (revision 3861) +++ Classes/Service/Tcemain.php (working copy) @@ -149,7 +149,7 @@ * @return void */ protected function flushWorkspaceCacheEntriesByWorkspaceId($workspaceId) { - if (TYPO3_UseCachingFramework) { + if (TYPO3_UseCachingFramework === TRUE) { try { $GLOBALS['typo3CacheFactory']->create( 'workspaces_cache',